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 c a great language, or what?
Why is event driven programming or procedural programming, better within specific scenario?
Explain the properties of union.
What are predefined functions in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Why we write conio h in c?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
what is the format specifier for printing a pointer value?
What is pointer to pointer in c with example?
Why header files are used?
What is use of bit field?
What is the default value of local and global variables in c?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What is variables in c?