โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
int x=10,y=x,z=x,t;
y-=x;
z=-x;
t=-x;
printf("y=%d z=%d t=%d ",y,z,t);
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 x=10,y=x,z=x,t;
y-=x;
z=-x;
t=-x;
printf("y=%d z=%d t=%d ",y,z,t);
return 0;
}