download Mastguru Android App

Question Detail

Exit() is same as return

  • TRUE
  • FALSE
Similar Questions :

1. Due to variable scope in c

  • Variables created in a function cannot be used another function
  • Variables created in a function can be used in another function
  • Variables created in a function can only be used in the main function
  • None of above

2. What is wild pointer in c

  • a pointer which we need to write in future
  • a pointer which has bad naming convention
  • a pointer which has no limit
  • a point which has not initialized

3. What is true about fputs function

  • write to a file
  • takes two parameters
  • requires a file pointer
  • all 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. calloc() belongs to which library

  • stdlib.h
  • malloc.h
  • calloc.h
  • None of above
Read more from - C Programming Questions Answers - Chapter 1
Post a comment