How long does this loop run:
for(int x=0; x=3; x++)
a) Never
b) Three times
c) Forever
Answers were Sorted based on User's Feedback
Answer / pracheer gupta
what r u saying guys..
the loop will run c) forever
this is bcoz in the termination part it is actually x=3 and
not x==3.
x=3 will always evaluate to true and hence the loop is
executed infinite times.
| Is This Answer Correct ? | 94 Yes | 11 No |
Answer / manju
The correct and verified answer is the loop runs forever
the answer is c. it is so becoz in condition part we are
giving i=3 and not i==3.
so it executes infinite times.
| Is This Answer Correct ? | 32 Yes | 3 No |
Answer / eric
The loop will run forever.
K.premalatha is the foolest lady I have ever met.
| Is This Answer Correct ? | 17 Yes | 3 No |
Answer / john
the loop runs forever guys....
have you tried this? without trying u r giving the random answers?
Sentrix, Eric, Manju,Pracheer Gupta are right...
other guys please try it....
| Is This Answer Correct ? | 17 Yes | 4 No |
Answer /
#include<stdio.h>
main()
{
for(int x=0; x=3; x++)
printf("Forever.....");
}
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / divya
hai john I tried this in online compiler but it shows some errors....didnt give exact ans...Is there any other ways to conform this answer.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / awaneesh dubey
Never . It will show compile time error . boolean required
at the terminationa condition not int . i.e. it should be
for(int x=0; x==3; x++) not for(int x=0; x=3; x++) .
x=3 will cause compilation error. So answer is never .
| Is This Answer Correct ? | 1 Yes | 1 No |
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
What are advantages of using friend classes?
What is split a string in c++?
Write a code/algo to find the frequency of each element in an array?
Explain the auto storage classes in c++.
What is a forward referencing and when should it be used?
why all c++ program must have default constructor?
How is data hiding achieved in c++?
structure that describe a hotel with name, address,rooms and number of rooms
What are the main characteristics of C++ as a programming language?
What is the type of 'this' pointer?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].