study the code:
#include<stdio.h>
void main()
{
const int a=100;
int *p;
p=&a;
(*p)++;
printf("a=%dn(*p)=%dn",a,*p);
}
What is printed?
A)100,101 B)100,100 C)101,101 D)None of the
above
Answer Posted / biranchi ranjan parida
none of the above
pointer value of address increases it cant store its
original value
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what do you mean by enumeration constant?
Why #include is used in c language?
I need a sort of an approximate strcmp routine?
How do you define structure?
Which is an example of a structural homology?
What is c variable?
Explain the priority queues?
What are the similarities between c and c++?
Explain the difference between #include "..." And #include <...> In c?
How are pointers declared in c?
What is the significance of an algorithm to C programming?
What is a built-in function in C?
How can I do serial ("comm") port I/O?
Explain union. What are its advantages?
What is a floating point in c?