Question Detail

Which operator has the highest priority

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

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

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value

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

3. If include files can be nested

  • Yes
  • No

4. Size of void pointer is

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

5. What is true about fputs function

  • write to a file
  • takes two parameters
  • requires a file pointer
  • all of above
Read more from - C Programming Questions Answers - Chapter 1