#include<stdio.h>
int main()
{
const int *p;
int a=10;
p=&a;
printf("%d",*p);
return 0;
}
a) 0
b) 10
c) Garbage Value
d) Any Memory address
What will be output of the following c code?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What will be output of the following c code?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!