#include <stdio.h>
int main() {
printf( "Hello World!\\n" );
}
In C, we start with import in “#include <stdio.h>”, which means Standard Input Output, so that we can get inputs and outputs. To print something, we need to use “printf” and we need to have semicolon (;) in every code that we will be executing.