const char *
char * const
What is the differnce between the above tow?.
Answer Posted / kamaljit singh
in the first case it is pointer to a constant (i.e the
address can be changed ,where as the content/value in that
address cannot be changed).
In the later case it is a constant pointer (i.e the address
cannot be changed ,where as the content/value in that
address can be changed).
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
I need testPalindrome and removeSpace
#include
In a byte, what is the maximum decimal number that you can accommodate?
Explain the process of converting a Tree into a Binary Tree.
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
List the difference between a "copy constructor" and a "assignment operator"?
Explain what does the function toupper() do?
What is #define?
Is multithreading possible in c?
Explain two-dimensional array.
Explain the Difference between the New and Malloc keyword.
how we can make 3d venturing graphics on outer interface
What is pragma in c?
What are qualifiers in c?
Is c easy to learn?
What is infinite loop?