โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
int a=3,b=4;
b%=3+4;
a*=a+5;
printf("%d %d ",a, b);
return 0;
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#include
int main(){
int a=3,b=4;
b%=3+4;
a*=a+5;
printf("%d %d ",a, b);
return 0;
}