A
Q. What will be the output of this program?
Code:
#include <stdio.h>
int main() {
int a = 10;
int *p = &a;
printf("%d", *p);
return 0;
}
int main() {
int a = 10;
int *p = &a;
printf("%d", *p);
return 0;
}
- Correct Answer - Option(A)
- Views: 23
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.