← Back to Question List
C Quiz #12
Modulo Result
What does this program print?
📄 Code
1#include <stdio.h>23int main() {4 printf("%d", 17 % 5);5 return 0;6}
What does this program print?
1#include <stdio.h>23int main() {4 printf("%d", 17 % 5);5 return 0;6}