Answers for "Hello world in c programming language"

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
-1

hello world program in c

echo "Hello, World"
Posted by: Guest on May-08-2020

Code answers related to "C"

Browse Popular Code Answers by Language