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 are the different types of endless loops?
What are valid operations on pointers?
Why #include is used in c language?
How to Throw some light on the splay trees?
Wt are the Buses in C Language
Write a code on reverse string and its complexity.
What is meant by high-order and low-order bytes?
Can we declare function inside main?
What is c system32 taskhostw exe?
What does the file stdio.h contain?
What are reserved words?
Why do we use pointer to pointer in c?
What is include directive in c?
What is sizeof return in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...