+ 1
int x= 9; int y= 5; printf("%d",x%y); I am not getting out put can you plz help me
2 Respuestas
+ 7
ujwal deep your program runs just fine with the missing program structure filled in. Did you forget this part:
#include <stdio.h>
int main() {
    .
    .
    .
    return 0;
}
0
ujwal deep 
#include <stdio.h>
int main() {
    int x= 9;
    int y= 5;
    printf("%d",x%y);
    return 0;
}
*Output:-
4



