what is difference between array of characters and string
Answer Posted / revathy
In terms of C language,
string is nothing but the array of characters.
char a[10] is nothing but a string with 9 characters and a
null..
| Is This Answer Correct ? | 15 Yes | 34 No |
Post New Answer View All Answers
What does c value mean?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Do variables need to be initialized?
Why shouldn’t I start variable names with underscores?
c program for searching a student details among 10 student details
What are formal parameters?
What is difference between constant pointer and constant variable?
How do shell structures work?
State the difference between realloc and free.
What is the use of function overloading in C?
What type is sizeof?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What does struct node * mean?
What are inbuilt functions in c?