Write a Program to Print Your Name Ten Times ?

#include<stdio.h>

#include<conio.h>

void main(){

int i=1;

while(i<=10);

{

printf(“\n My Name Is LNMCBM”);

i=i+1;

}

getch();

}

output :-

LNMCBM

LNMCBM

LNMCBM

LNMCBM

LNMCBM

LNMCBM

LNMCBM

LNMCBM

LNMCBM

LNMCBM

Related Post

Leave a Reply

Your email address will not be published. Required fields are marked *