download Mastguru Android App

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. If include files can be nested

  • Yes
  • No

2. Continue statement used for

  • To continue to the next line of code
  • To stop the current iteration and begin the next iteration from the beginning
  • To handle run time error
  • None of above

3. Which operator has the highest priority

  • ()
  • []
  • *
  • /

4. What will be the output of following program
#include
main()
{
int x,y = 10;
x = y * NULL;
printf(\"%d\",x);
}

  • error
  • 0
  • 10
  • Garbage value

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

  • Yes
  • No
Read more from - C Programming Questions Answers - Chapter 1
Post a comment