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. total number of keywords in C are

  • 30
  • 32
  • 48
  • 132

2. Out of following program :
float x = 10.7;
int i;

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value

3. A member is a

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

4. 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

5. calloc() belongs to which library

  • stdlib.h
  • malloc.h
  • calloc.h
  • None of above
Read more from - C Programming Questions Answers - Chapter 1