CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #47

Character Arithmetic

mediumVariables

What does this code print?

📄 Code

1char c = 'A';
2c = c + 1;
3printf("%c", c);