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