Question Detail

Break statement is used for

  • Quit a program
  • Quit the current iteration
  • Both of above
  • None of above
Similar Questions :

1. A member is a

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

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

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value

3. Which operator in c can't be overloaded

  • %
  • +
  • ::
  • -

4. If include files can be nested

  • Yes
  • No

5. Difference between structure and union is

  • We can define functions within structures but not within a union
  • We can define functions within union but not within a structure
  • The way memory is allocated
  • There is no difference
Read more from - C Programming Questions Answers - Chapter 1