Question Detail

What is correct order of precedence in C

  • Addition, Division, Modulus
  • Addition, Modulus, Division
  • Multiplication, Substration, Modulus
  • Modulus, Multiplication, Substration
Similar Questions :

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

2. Disadvantage of array in C is

  • We can easily access each element
  • It is necessary to declare too many variables
  • It can store only one similar type of data
  • None of above

3. Can getch() be used to echo the input

  • Yes
  • No

4. Break statement is used for

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

5. To access the members of structure which symbol is used

  • *
  • -
  • ,
  • .
Read more from - C Programming Questions Answers - Chapter 1