Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 What will be the output of the program ? #include<stdio.h> void fun(void p); int i; int main() { void vptr; vptr = &i; fun(vptr); return 0; } void fun(void p) { int q; q = (int)&p; printf("%d\n", q); } ?->(Show Answer!)
1. What will be the output of the program ? #include<stdio.h> void fun(void p); int i; int main() { void vptr; vptr = &i; fun(vptr); return 0; } void fun(void p) { int q; q = (int)&p; printf("%d\n", q); }