← Back to Question List
C Code Walkthrough #6
Character Arithmetic
📄 Code
Read carefully — what does this print?1#include <stdio.h>23int main() {4 char c = 'A';5 printf("%c\n", c + 1);6 printf("%d\n", c);7 printf("%c\n", c + 32);8 return 0;9}