Привет, мир на языке программирования C

#include <stdio.h>
int main()
{
 	printf("Hello, World");  //single line comment
 	return 0;
 	/*
    	multi
    	line
    	comments
	/*
}
Vast Vole