K
Q. What will be the output of the following C code?
Code:
#include <stdio.h>
int main()
{
int x = 20;
x %= 3;
printf("%d",x);
return 0;
}
int main()
{
int x = 20;
x %= 3;
printf("%d",x);
return 0;
}
- Correct Answer - Option(A)
- Views: 303
- Filed under category C Programming
Discusssion
Login to discuss.