Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
What is the output of the below given code?
int m = 23;
m = m% (m * 3);
printf("%d",m);1
23
2
3
3
0
4
1
What is the output of the below given code?
int m = 23;
m = m% (m * 3);
printf("%d",m);