Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Q.8. main() { int a=5; int b=10; { int a=2; a++; b++; } printf(quot;%d%dquot; ,a,b); } What will be output of program?
{
int a=5;
int b=10;
{
int a=2;
a++;
b++;
}
printf("%d%d" ,a,b);
}
What will be output of program?
(A) 510
(B) 611(C) 5 11
(D) 6 10