sahajjain01

Print your name 100 times.

Aug 4th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. //Program to print your name 100 times.
  2. #include<iostream.h>
  3. #include<conio.h>
  4. void main()
  5. {
  6.     clrscr();
  7.      int i;
  8.      for(i=1;i<=100;i++)
  9.      cout<<"Sahaj"<<endl;
  10.     getch();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment