Problem 1. C Program to print text
#include<stdio.h>
#include<conio.h>
main()
{
clrscr();
printf(“MyComputerScience.net”);
printf(“It's all about Computer Science”);
getch();
}
C compiler: gcc 4.1.2
Back to main directory: Sample C Program | Software Practical | Solved C Assignment#include<conio.h>
main()
{
clrscr();
printf(“MyComputerScience.net”);
printf(“It's all about Computer Science”);
getch();
}
C compiler: gcc 4.1.2