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
/*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