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
Is array a primitive data type in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Who is the main contributor in designing the c language after dennis ritchie?
What is string constants?
Why should I use standard library functions instead of writing my own?
When should we use pointers in a c program?
What is putchar() function?
What does the && operator do in a program code?
Why c is faster than c++?
What is indirection?
How to throw some light on the b tree?
How can I remove the leading spaces from a string?
What are multidimensional arrays?
What is extern c used for?
Can we declare a function inside a function in c?