Find out the values of variables a and b after the execution of program or find out the error if any. #include<stdio.h> #include<conio.h> int main() { int a,b=&a,c=&b; a=5; **c=15; *b=*c; printf(a=%d,b=%d,a,*b); getch(); }
Reveal answer
Fill a bubble to check yourself