// A program that Hello World! // Sasha, 23T1 // This is the header of the file - it gives us a // description of what the program does. /* Comment start Comment end */ // Don't forget to include your standard input // output file if you want to print something to // the terminal! #include int main (void) { printf("Hello World!\n"); printf("\\"); return 0; }