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
How can I insert or delete a line (or record) in the middle of a file?
Why void main is used in c?
#include
How do you construct an increment statement or decrement statement in C?
How can you find out how much memory is available?
What does stand for?
Explain what is the benefit of using an enum rather than a #define constant?
In C programming, what command or code can be used to determine if a number of odd or even?
What does malloc () calloc () realloc () free () do?
Explain what is a stream?
What would be an example of a structure analogous to structure c?
How to get string length of given string in c?
How do I send escape sequences to control a terminal or other device?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Write a program to use switch statement.