[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

C Programming :: Pointers - Discussion

Home > C Programming > Pointers > MCQs Questions Discussion

49 / 60

What is the output of this 'C' Programe?

#include <stdio.h>
int main()
{
int i=12;
int *p =&i;
printf("%d\n",*p++);
}

AAddress of i++

B12

CGarbage value

DAddress of i

Answer: Option (Login/Signup)

Show Explanation

Asked In :: Capgemini Societe Generale

Post Your Answer Here:     

No Discussion on this question yet!