Our website is made possible by displaying online advertisements to our visitors.Please consider supporting us by disabling your ad blocker.
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Translate it in your own Language

Print this Job Post

Print Friendly and PDF

Thursday, May 1, 2014

Hello word Program

Method 1:

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

Method 2:
#include <stdio.h>
#include<conio.h>
void main()
{
  char string[] = "Hello World";
  clrscr();
  printf("%s\n", string);
  getch();
}


Method 3:
#include <stdio.h>
#include<conio.h>
#define TRUE 1
void main()
{
  while (TRUE)
  {
    printf("Hello World\n");
  }
 getch();
}

No comments:

Post a Comment

Copyright @ CrackMNC 2014-2024
Divas Nikhra Theme by Crack MNC