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