Tuesday, May 2, 2017

Hello World

Hello World is a first program written on any Programming Language. It just displays a text "Hello Word" on output screen.

#include<stdio.h>
#include<conio.h>
void main()
{
printf("Hello World");
getch();
}


No comments:

Post a Comment

Return Type Funtion without passing any Argument.

#include<stdio.h> #include<conio.h> int sum(); main() { int x; x=sum(); printf("Sum= %d",x); getch(); } int sum(int x...