Here is a program which tell you how to print a line in c language
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hello c programming world");
getch();
}
it is a basic program that help you print a line in c language.
download
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hello c programming world");
getch();
}
download
Nice
ReplyDelete