Answers for "./helloworld in c"

C
0

Hello world in c programming language

#include <stdio.h>
int main()
{
 	printf("Hello, World");  //single line comment
 	return 0;
 	/*
    	multi
    	line
    	comments
	/*
}
Posted by: Guest on September-08-2021

Code answers related to "C"

Browse Popular Code Answers by Language