wats the diference btwen constant pointer and pointer to a
constant.pls give examples.
Answer Posted / jose j pothoor
I see ur explanation...then what would be the answer of
below program
void main()
{
int const *p=5;
printf("%d",++(*p));
}
a)5
b)6
c) Run time error
d) Compiler error
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
How variables are declared in c?
Difference between linking and loading?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
How old is c programming language?
How do you generate random numbers in C?
will u please send me the placement papers to my mail???????????????????
How will you write a code for accessing the length of an array without assigning it to another variable?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How does normalization of huge pointer works?
Wt are the Buses in C Language
Write a program to print ASCII code for a given digit.
When is a “switch” statement preferable over an “if” statement?
What is the difference between procedural and functional programming?
how can use subset in c program and give more example
What is data type long in c?