0

int x= 9; int y= 5; printf("%d",x%y); I am not getting out put can you plz help me

17th Nov 2023, 1:23 AM
ujwal deep Parimi
ujwal deep Parimi - avatar
1 Respuesta
+ 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; }
17th Nov 2023, 1:47 AM
Brian
Brian - avatar