Question Detail

Which operator has the highest priority

  • ()
  • []
  • *
  • /
Similar Questions :

1. calloc() belongs to which library

  • stdlib.h
  • malloc.h
  • calloc.h
  • None of above

2. What is dangling pointer in c

  • if pointer is pointing to a memory location from where variable has been deleted
  • if pointer is assigned to more than one variable
  • if pointer is not defined properly
  • none of above

3. Break statement is used for

  • Quit a program
  • Quit the current iteration
  • Both of above
  • None of above

4. Size of void pointer is

  • 1 byte
  • 2 byte
  • 4 byte
  • 8 byte

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

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value
Read more from - C Programming Questions Answers - Chapter 1