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> power(int); int main() { int a=5, aa; / Address of 'a' is 1000 / aa = &a; a = power(&aa); printf("%d\n", a); return 0; } power(int ptr) { int b; b = ptrptr; return (b); } ?->(Show Answer!)
1. What will be the output of the program ? #include<stdio.h> power(int); int main() { int a=5, aa; / Address of 'a' is 1000 / aa = &a; a = power(&aa); printf("%d\n", a); return 0; } power(int ptr) { int b; b = ptrptr; return (b); }