Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a program to input an integer from the keyboard and display on the screen “WELL DONE” that many times.



Write a program to input an integer from the keyboard and display on the screen “WELL DONE&rdq..

Answer / hr

#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
int n;
char *str;
str="WELL DONE";
cout<<" Enter an integer value ";
cin>>n;
for(int i=0;i<n;i++)
{
cout<<str<<endl;
}
return 0;
}
OUTPUT:
Enter an integer value 5
WELL DONE
WELL DONE
WELL DONE
WELL DONE
WELL DONE

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C++ Interview Questions

Tell me about virtual function

1 Answers  


What does it mean to declare a function or variable as static?

0 Answers   Amazon,


When must you use a constructor initializer list?

0 Answers   Amazon,


It is possible to build a C++ compiler on top of a C compiler. How would you do this?

0 Answers   Amazon,


How can a C function be called in a C++ program?

0 Answers  


Do you know about Agilent PRECOMPILERS. ?

0 Answers   Agilent,


Write a program that ask for user input from 5 to 9 then calculate the average

0 Answers   IBS,


Execute the qsort () in c/sort() in c++ library or your own custom sort which will sort any type of data on user defined criteria.

0 Answers   Adobe,


What does it mean to declare a member function as virtual in C++?

0 Answers   Amazon,


Briefly explain various access specifiers in C++.

0 Answers   Amdocs,


What are the advantages and disadvantages of B-star trees over Binary trees?

0 Answers  


What is meant by exit controlled loop?

0 Answers   Adobe,


Categories