Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
void foo(int*);
int main()
{
    int i = 10, *p = &i;
    foo(p++);
}
void foo(int *p)
{
    printf("%d\n", *p);
}

A. 10

B. Some garbage value

C. Compile time error

D. Segmentation fault

Answer: Option A


This Question Belongs to C Program >> Pointer

Join The Discussion

Related Questions on Pointer