loop1:
{
x=i<n?(i++):0;
printf("%d",i);
exit(x);
continue;
}
Error- misplaced continue.
Doubt-1.will the exit(x) be executed for all values of x
2.will this statement go out of the program.
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
1) THE exit() function will be occuring only for one value for x in this case.
the main use of exit() function is , whenever we come accross a situation that no other go when we reach certain values we must be back to the IDE again.. so for that purpose we can use exit() function...... here lies an ambiquity since u have given the exit fuction inside the looping structure.. but exit() function when it is called once it will return to the programming screen... but the loop didnt terminate yet...
2) ya sure whenever exit function is encountered this will make to come from prompt mode to the IDE mode
thank u
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / vija
Dear SRIVIDYA!!!!
as per my experience....
exit() function can take only two arguments. 0(zero) and 1
exit(0)--indicates exit with error
exit(1)--indicates successful exit...
coming to yr code fragment in question..there is a
possibility for exit(x) to take other values..
so this caused the errorrrrr
-------------------------
correct me if its wrong!!
yours vijayabhaskar83@sifymail.com
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / padmaraj
HI,
1: the statement x=i<n?(i++):0;
the value of i is < n the i will be increamented
by 1, else 0.
2 : The value of i is printed.
3 : exit() function is executed by all values of x.
4 : this program will not go out of loop.
| Is This Answer Correct ? | 0 Yes | 3 No |
when i use cout or cin call & then either << or >> .....it shows declaration syntax error...what should i do? cout<<"anything"; int a; cin>>a; return 0;
what is meant for variable not found?
what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?
write a profram for selection sort whats the error in it?
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
2. A student studying Information Technology at Polytechnic of Namibia is examined by coursework and written examination. Both components of assessment carry a maximum of 50 marks. The following rules are used by examiners in order to pass or fail students. a. A student must score a total of 40% or more in order to pass (total = coursework marks + examination marks) b. A total mark of 39% is moderated to 40% c. Each component must be passed with a minimum mark of 20/50. If a student scores a total of 40% or more but does not achieve the minimum mark in either component he/she is given a technical fail of 39% (this mark is not moderated to 40%) d. Grades are awarded on marks that fall into the following categories. Mark 100-70 69-60 59-50 49-40 39-0 Grade A B C D E Write a program to input the marks for both components (coursework marks out of 50 and examination marks out of 50), out put the final mark and grade after any moderation. [30]
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
errors are known as?
3 Answers EX, State Bank Of India SBI,
wap for bubble sort
What is the code for following o/p * * * * * * * * * * * * * * * *
Why are memory errors hard to debug?
how tally is useful?