Online Compiler C

#include <stdio.h> int main() { // Write your code here printf("H\n"); return 0; }
1) The code prints the letter "H" followed by a newline character, then exits.

2) Think about how to modify the printf statement to print multiple letters or words. Consider using escape sequences for special characters like tabs or newlines.