Which of the following are valid "include" formats?
A)#include and #include[file.h]
B)#include (file.h) and #include
C)#include [file.h] and #include "file.h"
D)#include <file.h> and #include "file.h"
Answer Posted / santosh
ans is d optioon because in c
we write hedder files in the following format,
#include<stdio.h>
#include "stdio.h"
there can be many number of file names.
above both formats are correct.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is a file descriptor in c?
When is a null pointer used?
How do I convert a string to all upper or lower case?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What should malloc(0) do?
How can I call a function with an argument list built up at run time?
What is meant by inheritance?
how to create duplicate link list using C???
What do you mean by Recursion Function?
Write a program for finding factorial of a number.
what are the 10 different models of writing an addition program in C language?
Do you know the purpose of 'register' keyword?
What is graph in c?
Why do we use pointer to pointer in c?
What are the storage classes in C?