wats the diference btwen constant pointer and pointer to a
constant.pls give examples.
Answer Posted / satish
char * const p; ->it is const pointer to char
const char * p; ->it is pointer to const char
| Is This Answer Correct ? | 29 Yes | 3 No |
Post New Answer View All Answers
Is null valid for pointers to functions?
Where can I get an ansi-compatible lint?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
How do I send escape sequences to control a terminal or other device?
write a program to concatenation the string using switch case?
What is the purpose of main( ) in c language?
what is the structure pointer?
What are identifiers c?
How can I recover the file name given an open stream or file descriptor?
In a switch statement, what will happen if a break statement is omitted?
Explain what is a stream?
Describe explain how arrays can be passed to a user defined function
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Is a house a mass structure?
Is it better to bitshift a value than to multiply by 2?