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