What is the difference between char a[] = "string"; and
char *p = "string"; ?
Answer Posted / ashish
here a is an array and is a char const * data type.
hence u cannot change value of a but u can change the value
which a points to.
p on the other hand is a const char * data type.
hence value of p an be changed but the value p points to
cannot be changed.
i dont know the answer!!! :P
Is This Answer Correct ? | 3 Yes | 13 No |
Post New Answer View All Answers
Why is c called a mid-level programming language?
Is it possible to pass an entire structure to functions?
What are all different types of pointers in c?
What is a class c rental property?
What is the purpose of void pointer?
What are loops c?
What is #error and use of it?
What is a spanning Tree?
Which is best book for data structures in c?
In a switch statement, what will happen if a break statement is omitted?
Why clrscr is used in c?
number of times a digit is present in a number
How can I trap or ignore keyboard interrupts like control-c?
What is action and transformation in spark?
What is the use of getchar() function?