16 lines
		
	
	
		
			287 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			287 B
		
	
	
	
		
			C
		
	
	
	
	
	
// tutorial 1 : simple hello world 
 | 
						|
// write comments like this
 | 
						|
/*
 | 
						|
or you could write comments like this too
 | 
						|
*/
 | 
						|
 | 
						|
#include<stdio.h>
 | 
						|
 | 
						|
int main(){
 | 
						|
    printf("hello world\n");
 | 
						|
    printf("byee world\n");
 | 
						|
    // "\n" is a newline character
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
// HAPPY CODING !!!
 |