Answer Posted / satya
continue is a keyword..
whenever this statement encountered in a loop , the control
will immediately send to the starting of the loop , without
continuing the sequence of statements...
starting of the loop means
1)control goes to incremental operator if it is for loop
2)control will go to condition checking statement in while
loop...
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the most efficient way to count the number of bits which are set in an integer?
What is the mean of function?
What are high level languages like C and FORTRAN also known as?
What are multidimensional arrays?
What happens if a header file is included twice?
Explain how do you convert strings to numbers in c?
What is the purpose of sprintf?
If you know then define #pragma?
Why & is used in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is ambagious result in C? explain with an example.
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is the meaning of && in c?
Explain what is wrong in this statement?
Why main function is special give two reasons?