what is difference between array of characters and string
Answer Posted / nag
Character array consist of group of characters, and static one
char a[10] means 9 are for using purpose and one is null
In case of string null is taken as default and is taken into
double quotes
String s="string";
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
How can I recover the file name given an open stream or file descriptor?
What is a good data structure to use for storing lines of text?
What are the advantages of using Unions?
What do the functions atoi(), itoa() and gcvt() do?
Is null equal to 0 in sql?
What is the size of array float a(10)?
How to write a code for reverse of string without using string functions?
What is || operator and how does it function in a program?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Ow can I insert or delete a line (or record) in the middle of a file?
What is the condition that is applied with ?: Operator?
Can we initialize extern variable in c?
What is the correct declaration of main?
write a program fibonacci series and palindrome program in c
Which is better malloc or calloc?