Basic Programming of c
List of Experiments
SEQUENTIAL CONTROL STATEMENTS
1 Write a program to Print HELLO
-----------------------------------------------------------------------------------
#include<stdio.h>
#include<conio.h>
void main()
{
printf("welcome");
getch();
}
-----------------------------------------------------------------------------------
0 Comments