download Mastguru Android App

Question Detail

Continue statement used for

  • To continue to the next line of code
  • To stop the current iteration and begin the next iteration from the beginning
  • To handle run time error
  • None of above
Similar Questions :

1. To access the members of structure which symbol is used

  • *
  • -
  • ,
  • .

2. What is use of \r in c

  • used to insert a vertical tab
  • used to insert a tab
  • places cursor at the end of line
  • places cursor at the start of line

3. Adding to a pointer that points to an array will

  • Cause an error
  • Increase the value of the element that the pointer is pointing to
  • Cause the pointer to point to the next element in the array
  • None of above

4. What will be the output of following program
#include
main()
{
int x,y = 10;
x = y * NULL;
printf(\"%d\",x);
}

  • error
  • 0
  • 10
  • Garbage value

5. A member is a

  • Variable in a structure
  • Datatype of structure
  • Structure pointer
  • None of above
Read more from - C Programming Questions Answers - Chapter 1
Post a comment

  • ramtejakongari 9 years ago

    continue means stopping the current inst and goes to next one?
    if any one have clear in this issue plz show me the right direction?
    ////??

    mastguru 9 years ago replied

    say you have a loop running 10 times and you want when its 5th time you do not want to implement some logic then you can write "continue", it will skip when i==5, and will again run for i==6 But in case you want to stop and execute next then you will use "break" instead of Continue. Hope it helps