Program to print "HELLO FRIENDS".

Program:


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


Output:

"HELLO FRIENDS"

Comments

Popular posts from this blog

Write a program to display multiplication table

Program that reads two numbers from keyboards and gives their addition, substaction, multiplication, division and modulo.