← Back to Question List
C Code Walkthrough #18
Multiple Format Specifiers
📄 Code
Read carefully — what does this print?1#include <stdio.h>2int main() {3 int age = 25;4 char grade = 'A';5 printf("Age: %d Grade: %c\n", age, grade);6 return 0;7}