What will be the value of c after the execution of the following program? #include<stdio.h> #include<conio.h> int main() { int c=1,d=0; while(d<=9) { printf( %d%d,++d,++c); } getch(); }
Reveal answer
Fill a bubble to check yourself
What will be the value of c after the execution of the following program? #include<stdio.h> #include<conio.h> int main() { int c=1,d=0; while(d<=9) { printf( %d%d,++d,++c); } getch(); }