Programming Languages C Objective
Mar 07, 2013

#include<stdio.h>

void main()

{

int i=85;

clrscr();

printf("%p %Fp",i,i);

getch();

}

What will output when you compile and run the above code?

Choose the correct answer:
A) 0055 034E:0055
B) 0055 FFFF:0055
C) 85 85
D) Compiler error
Detailed Explanation

No Explanation

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback