C Programming - Control Instructions - Discussion
|
|
|
|
Read more:"Nothing is impossible to a willing heart."
- (Proverb)
|
|
Abid Khan said:
(Sat, Nov 27, 2010 04:16:28 AM)
|
|
| |
While statement work properly.
But x is not declared so while statement missing. |
|
Vinoth said:
(Mon, Mar 14, 2011 04:42:13 AM)
|
|
| |
Khan you understand in while loop only condition is checked.
Eg:while(x>5). |
|
Praveen said:
(Mon, Jan 16, 2012 01:11:15 AM)
|
|
| |
Ambiguous Answers, X is undeclared and while statement is wrong.
Depends on Compiler to show which error first.
How it parses the program.
In option both x undeclared and while error should be as one answer. |
|
|