Question Detail

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
Similar Questions :

1. If include files can be nested

  • Yes
  • No

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

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value

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

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

4. Break statement is used for

  • Quit a program
  • Quit the current iteration
  • Both 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