tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 C Language > Basic > Hello World

Hello World 

The famous hello world example in C language.

File Name  :  
source/C/basic/hello_world.c 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
1#include <stdio.h>
2#include <conio.h>
3 
4int main(int argc, char *argv[])
5{
6  printf("Hello, world\n");
7  getch(); 
8  return 0;
9}

It gives the following output,
Hello, world



 
  


  
bl  br