Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

Hello world in c programming language

#include <stdio.h>
int main()
{
 	printf("Hello, World");  //single line comment
 	return 0;
 	/*
    	multi
    	line
    	comments
	/*
}
Source by www.studytonight.com #
 
PREVIOUS NEXT
Tagged: #Hello #world #programming #language
ADD COMMENT
Topic
Name
8+4 =