โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
int i=-4, j, num=10;
j = i % -3;
j = (j ? 0: num*num);
printf("j=%d ",j);
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 i=-4, j, num=10;
j = i % -3;
j = (j ? 0: num*num);
printf("j=%d ",j);
return 0;
}