Popular News [ View all Popular News ]

Latest Updates

Showing posts with label C programming. Show all posts
Showing posts with label C programming. Show all posts

Wednesday, November 16, 2011

How to print a statement

0 comments
Here is a basic demo for print a "HELLO" in C.

/*HELLO */
#include<stdio.h>
#include<conio.h>
void main(){
clrscr();
printf("HELLO");
getch();
}

That's enough.You can run this code in your C compilor.
Output:
HELLO




Blog Archive