to compile and run code: press F11
Every time the program launches, the interpreter finds the main function to run
int main(){
return 0;
}
C language is consider a high end language.
#include <stdio.h>
#include <stdio.h>
int main(){
return 0;
}
#include <stdio.h>
int main(){
// print in C
printf("Hello World");
return 0;
}

// comment: 'ctrl' + '/