Step 1 : Download Dev C

to compile and run code: press F11

Default set up (base code)

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.

Widely used library, and always ends with .h

#include <stdio.h>

Empty code:

#include <stdio.h>

int main(){

	return 0;
}

Hello World (My_First_Program)

#include <stdio.h>

int main(){
//	print in C
	printf("Hello World");	
	
	return 0;
}

image.png

Comment in C

//	comment: 'ctrl' + '/

And always remember ever code ends with semi column ‘;’