Question Detail

A member is a

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

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

2. rand() function returns

  • float value
  • integer value
  • any type
  • none of above

3. The compiler in C ignores all text till the end of line using

  • //
  • /
  • */
  • none of above

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

  • S
  • Error
  • Garbage value
  • None of above

5. Which operator in c can't be overloaded

  • %
  • +
  • ::
  • -
Read more from - C Programming Questions Answers - Chapter 1