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
Why is python slower than c?
Why doesn't C support function overloading?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What is output redirection?
Is c weakly typed?
Explain how do you determine the length of a string value that was stored in a variable?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
what are the 10 different models of writing an addition program in C language?
Is there a built-in function in C that can be used for sorting data?
What is scope and lifetime of a variable in c?
What is the size of structure in c?
Write a program to identify if a given binary tree is balanced or not.
Explain how can a program be made to print the name of a source file where an error occurs?