download Mastguru Android App

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. 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. A member is a

  • Variable in a structure
  • Datatype of structure
  • Structure pointer
  • None of above

3. What is the purpose of getc()

  • read a character from STDIN
  • read a character from a file
  • read all file
  • read file random

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

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value

5. What is true about fputs function

  • write to a file
  • takes two parameters
  • requires a file pointer
  • all of above
Read more from - C Programming Questions Answers - Chapter 1
Post a comment