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