Online Compiler C

#include <stdio.h> int main() { // Write your code here printf("Hello world!\n"); return 0; }
1) This code prints the text "Hello world!" to the console and then exits successfully.

2) Hint: The `printf` function is used to output formatted text to the standard output (usually the terminal/console).
Hint: The `\n` at the end of the string is a special character that creates a new line after the text is printed.