Question Detail

Structures can be used

  • to hold different datatypes
  • have pointers to structures
  • to assign to one another
  • all of above
Similar Questions :

1. Which of the following below is/are valid C keywords

  • integer
  • int
  • null
  • none of above

2. Size of void pointer is

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

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

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value

4. Exit() is same as return

  • TRUE
  • FALSE

5. Structures can be used

  • to hold different datatypes
  • have pointers to structures
  • to assign to one another
  • all of above
Read more from - C Programming Questions Answers - Chapter 1