Question Detail

We can insert pre written code in a C program by using

  • #read
  • #get
  • #include
  • #put
Similar Questions :

1. If include files can be nested

  • Yes
  • No

2. What will be the output of following program
#include
main()
{
int x,y = 10;
x = y * NULL;
printf(\"%d\",x);
}

  • error
  • 0
  • 10
  • Garbage value

3. calloc() belongs to which library

  • stdlib.h
  • malloc.h
  • calloc.h
  • None of above

4. Exit() is same as return

  • TRUE
  • FALSE

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