download Mastguru Android App

Question Detail

total number of keywords in C are

  • 30
  • 32
  • 48
  • 132
Similar Questions :

1. What is prototype of a function in C

  • It is the return type of a function
  • It is the return data of the function
  • It is declaration of a function
  • It is a datatype

2. Structures can be used

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

3. Which is invalid name of identifier

  • world
  • addition23
  • test_name
  • factorial

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

  • S
  • Error
  • Garbage value
  • None of above

5. 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
Read more from - C Programming Questions Answers - Chapter 1
Post a comment