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. Structures can be used

  • to hold different datatypes
  • have pointers to structures
  • to assign to one another
  • all of above

2. Difference between calloc() and malloc()

  • calloc() takes a single argument while malloc() needs two arguments
  • malloc() takes a single argument while calloc() needs two arguments
  • malloc() initializes the allocated memory to ZERO
  • calloc() initializes the allocated memory to NULL

3. printf() belongs to which library of c

  • stdlib.h
  • stdio.h
  • stdout.h
  • stdoutput.h

4. A member is a

  • Variable in a structure
  • Datatype of structure
  • Structure pointer
  • None of above

5. Size of void pointer is

  • 1 byte
  • 2 byte
  • 4 byte
  • 8 byte
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