What is the output of this C code?
#include <stdio.h>
int main()
{
int i = 10;
int *p=&i;
printf("%d\n",*p++);
}
Answers
Answered by
1
Answer:
the output of above code , after compiling is :-
10
Similar questions