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
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Difference between exit() and _exit() function?
Compare and contrast compilers from interpreters.
Write a program to print factorial of given number without using recursion?
How is pointer initialized in c?
what is the different bitween abap and abap-hr?
Explain the difference between #include "..." And #include <...> In c?
What is the purpose of type declarations?
What are volatile variables in c?
Tell me what are bitwise shift operators?
what is different between auto and local static? why should we use local static?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Why is c called c not d or e?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Write a Program to find whether the given number or string is palindrome.