Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3760452
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T10:28:25+00:00 2026-05-19T10:28:25+00:00

Possible Duplicates: string literal in c Assigning strings to arrays of characters I got

  • 0

Possible Duplicates:
string literal in c
Assigning strings to arrays of characters

I got the following code:

char result[3][4];

result[0] = "horse";
result[1] = "pig";
result[2] = "chicken";

It won’t compile saying Incompatible types in assignment. What am I doing wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T10:28:26+00:00Added an answer on May 19, 2026 at 10:28 am

    char is a single char, eg ‘h’

    What you want is string pointers.

     char *result[3];
    

    Remember if you do it this way you won’t be able to change the contents of an individual string (it is a constant and stored in a different place.)

    You could also do something like this

     char *result[3];
    
     result[0] =  malloc(100 * sizeof(char));
     strcpy(result[0],"horse"); // or strncpy(result[0],5,"horse")
     etc
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicates: What makes more sense - char* string or char *string? Pointer declarations
Possible Duplicates: Java String declaration Java Strings: String s = new String(silly); What is
Possible Duplicates: Why does simple C code receive segmentation fault? Modifying C string constants?
Possible Duplicates: a more graceful multi-line javascript string method Multiline strings in Javascript window.lastSavedContents
Possible Duplicate: Sizeof string literal On my windows7 mingw environment, I tried this: char
Possible Duplicates: Why does std::string not provide a conversion to const char*? Why doesn't
Possible Duplicates: Difference between char *str="STRING" and char str[] = "STRING"? Need some help
Possible Duplicate: difference between string object and string literal Let's say I have two
Possible Duplicate: Calling NSLog from C++: “Format string is not a string literal (potentially
Possible Duplicate: In C++, Why can't I write to a string literal while I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.