download Mastguru Android App

Question Detail

A member is a

  • Variable in a structure
  • Datatype of structure
  • Structure pointer
  • None of above
Similar Questions :

1. A member is a

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

2. What will be output of
#include
void main()
{
char test =`S`;
printf("\n%c",test);
}

  • S
  • Error
  • Garbage value
  • None of above

3. What is correct order of precedence in C

  • Addition, Division, Modulus
  • Addition, Modulus, Division
  • Multiplication, Substration, Modulus
  • Modulus, Multiplication, Substration

4. The first expression in a for loop is

  • Step value of loop
  • Value of the counter variable
  • Any of above
  • None of above

5. Any type of modification on the parameter inside the function will reflect in actual variable value can be related to

  • call by value
  • call by reference
  • both of above
  • none of above
Read more from - C Programming Questions Answers - Chapter 1
Post a comment