Write a program to print your name 5 times on the output screen. | CODE WITH SHARAD

Write a program to print your name 5 times on the output screen.

Written by Sharad Raj on 13th of March, 2018

BASIC PROGRAMS   C LANGUAGE PROGRAMS

PROGRAM CODE

#include<stdio.h>

#inclued<conio.h>

void main()

{

int i,n=5;

clrscr();

for(i=1;i<=5;i++)

{

printf(SHARAD);

}

getch();
}


Comments


Contact