Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C Ternary Operator
void main(){
float a =5, b =2;
int c;
c = a %b;
printf("%d",c);
}
What is the output of the above program?
1
2
2
3
3
1
4
compilation error