hello world in c programming language

Solutions on MaxInterview for hello world in c programming language by the best coders in the world

showing results for - "hello world in c programming language"
Isabella
26 Oct 2016
1#include <stdio.h>
2int main()
3{
4 	printf("Hello, World");  //single line comment
5 	return 0;
6 	/*
7    	multi
8    	line
9    	comments
10	/*
11}
Maryam
22 Jan 2018
1echo "Hello, World"