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
What is a pointer value and address in c?
What are the 5 data types?
write a c program in such a way that if we enter the today date the output should be next day's date.
Explain the difference between getch() and getche() in c?
What is a example of a variable?
Tell me when is a void pointer used?
What is || operator and how does it function in a program?
Can 'this' pointer by used in the constructor?
Which of these functions is safer to use : fgets(), gets()? Why?
Explain what is the use of a semicolon (;) at the end of every program statement?
What is a pointer variable in c language?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Write the syntax and purpose of a switch statement in C.
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What are directives in c?