1.

What will be output of following program        #include<stdio.h> #include<string.h> int main(){ int a = 5,b = 10,c; int *p = &a,*q = &b; c = p - q; printf("%d" , c); return 0; }

A. 1
B. 5
C. -5
D. Compilation error
Answer» B. 5


Discussion

No Comment Found