/* Exercise 01: Get familiar with coding. Create a program that displays "Hello World!" */ #include int main() { printf("Hello World!"); return 0; }