Answer Posted / paramesh
a string is collection of characters but an array is
collection of similar data types
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain how do you determine the length of a string value that was stored in a variable?
Why static variable is used in c?
What is structure pointer in c?
What is p in text message?
I came across some code that puts a (void) cast before each call to printf. Why?
Explain the use of keyword 'register' with respect to variables.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What happens if header file is included twice?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Difference between goto, long jmp() and setjmp()?
What is string function c?
What is a stream?
Explain what is the difference between the expression '++a' and 'a++'?
How do you print an address?
Why void main is used in c?