Friday 2 May 2014

Write a program that prints this message “Pakistan is my country” ten times using while loop.

Leave a Comment

Write a program that prints this message “Pakistan is my country” ten times using while loop.

#include <iostream>                              
# include <conio.h>
using namespace std;          
int main()
{
    int i;
  while (i<=10)

  {
      cout<<"\n Pakistan is My country:";
  i++;
  }
getch();
}




If You Enjoyed This, Take 5 Seconds To Share It

0 Questions: