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 / belsia
The answer is "D".Because in c it is possible to use
double codes in the header file.so the correct
answers are
#include<file.h>
#include<"file.h"
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain how do you sort filenames in a directory?
What are header files and what are its uses in C programming?
What is a null pointer in c?
Describe how arrays can be passed to a user defined function
What is structure of c program?
C program to find all possible outcomes of a dice?
How can I swap two values without using a temporary?
Why is c known as a mother language?
Which are low level languages?
What are different types of operators?
Is null always defined as 0(zero)?
Explain how does flowchart help in writing a program?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What does the file stdio.h contain?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..