0
Modulo Operator in print statement ???
How to get modulo operator - % in print statement in C
1 Respuesta
+ 1
Where do you see a problem?
Try for example this:
int n = 5;
printf("for n = %d\n",n%2);
How to get modulo operator - % in print statement in C