Comment on Tutorial - while (1) Loops in C++ By Reema sen
Comment Added by : Jorgeus
Comment Added at : 2012-08-30 09:07:03
Comment on Tutorial : while (1) Loops in C++ By Reema sen
#include <iostream>
using namespace std;
//While loop
main()
{
int num=1;
while(num<=10)
{
cout<<num<<endl;
num++;
}
return 0;
}
Output:
1
2
3
4
5
6
7
8
9
10
Try this, it's very simple
View Tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Subscribe to Tutorials
Related Tutorials
Program using concept of byte long short and int in java
Update contents of a file within a jar file
Tomcat and httpd configured in port 8080 and 80
Count number of vowels, consonants and digits in a String in Java
Student marks calculation program in Java
Calculate gross salary in Java
Calculate average sale of the week in Java
Vector in Java - Sample Program
MultiLevel Inheritance sample in Java
Archived Comments
1. send me SMS RECEIVE code please
View Tutorial By: Butler at 2008-04-26 05:33:40
2. hi i unable to retrive am getting below excepti
View Tutorial By: vignesh at 2015-03-25 17:14:58
3. how to connect the database in servelet use to sta
View Tutorial By: sudhir singh tomar at 2011-04-28 03:10:34
4. I just copied this example to my app. It's not wor
View Tutorial By: jhansi at 2012-02-22 10:26:17
5. good but not best
View Tutorial By: VIVEK at 2010-03-09 03:00:21
6. very nice
View Tutorial By: Md Irshad Alam at 2014-10-29 18:58:53
7. Hello guys, I'm developing java program to send SM
View Tutorial By: Rania at 2010-09-08 09:04:47
8. thank you so much i satisfied for the tutorial in
View Tutorial By: flick at 2010-09-24 21:10:59
9. Thanks. Well explanation..
View Tutorial By: Ebi Divakar at 2011-07-26 04:31:30
10. really a nice tutorial for beginners...Thanks a lo
View Tutorial By: ps at 2013-02-26 09:28:53