Program to print name 100 times in C++ Programming.
//Program to print your name 100 times.#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i;
for(i=1;i<=100;i++)
cout<<"Sahaj"<<endl;
getch();
}
Learn How to write computer programs, how to Write a program to - print, swap, sort, reverse, find, calculate, implement, quicksort, evaluate, enter elements, extract, exchange, transverse, transpose a matrix, traverse, take input, HTML, Python, C, C++, Java, HTML5.