GATE Computer Science (CS) 2014 Shift 1 Solved Paper

© examsiri.com
Question : 20 of 65
 
Marks: +1, -0
Consider the following program in C language:
#include <stdio.h>
main()
{
int i;
int *pi = &i;
scanf(“%d”,pi);
printf(“%d\n”, i+5);
}

Which one of the following statements is TRUE?
Go to Question: