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 infinite loop in C++ which does not use any variable
or constant?

Answers were Sorted based on User's Feedback



write infinite loop in C++ which does not use any variable or constant?..

Answer / sxx

for(;;)

Is This Answer Correct ?    27 Yes 3 No

write infinite loop in C++ which does not use any variable or constant?..

Answer / chetan bhola

while(1)
{
;
}

Is This Answer Correct ?    1 Yes 4 No

write infinite loop in C++ which does not use any variable or constant?..

Answer / gyanendra verma

#include<iostream.h>
#include<conio.h>
void main()
{
while!kbhit())
{
gotoxy(10,20);
printf(" Infinite loop by gyanendra verma ";
}
getch();
}
kbhit() : - A function that wait untill key press

Is This Answer Correct ?    3 Yes 14 No

Post New Answer

More C++ General Interview Questions

What are punctuators in c++?

0 Answers  


What is the difference between cin.read() and cin.getline()?

0 Answers  


Where Malloc(), Calloc(), and realloc() does get memory?

0 Answers  


When should we use container classes instead of arrays?

0 Answers  


How can you tell what shell you are running on unix system?

0 Answers  


When should you use multiple inheritance?

2 Answers  


Is it possible to provide default values while overloading a binary operator?

0 Answers  


When there is a global variable and local variable with the same name, how will you access the global variable?

0 Answers  


What is an incomplete type in c++?

0 Answers  


What is struct c++?

0 Answers  


When does the c++ compiler create temporary variables?

0 Answers  


What is class and structure in c++?

0 Answers  


Categories