Walk Lightly on this PLANET and yet leave such a FOOTPRINT that cannot be erased for thousands of Years..!!!
Visit Codstech for Cyber Security related Posts !

Visitors

Showing posts with label C-My First C Program. Show all posts
Showing posts with label C-My First C Program. Show all posts

Wednesday, August 31, 2011

C-37 : My first C Program

My first C Program ; To display a message


#include<stdio.h>
#include<conio.h>
void main()
            {
            clrscr();
            printf("My first Program!! \n");
            getch();
            }


Output :

My first Program!!




Refer To display a message also.

Note :
While using code block ....See the input code below :
(use file --> new empty file )
 

(No need to  use "clrscr" if u are using code block like software)
=========================================================================
Back to Home   &  C

Wednesday, February 9, 2011

C1 : To dispaly a message


To dispaly a message : 

#include<stdio.h>
#include<conio.h>
void main()
{
          clrscr();
          printf("Hellow.......This is my first C Program");
          getch();
}

-----------------------------------
Output :
Hellow.......This is my first C Program


Refer My first C Program also.



======================================================
Back to Home   &  C