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 / safish
D
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
What are the types of bitwise operator?
Why isnt there a numbered, multi-level break statement to break out
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Explain what is the benefit of using an enum rather than a #define constant?
How many types of functions are there in c?
What is derived datatype in c?
What are valid signatures for the Main function?
Explain indirection?
When should the volatile modifier be used?
How can I automatically locate a programs configuration files in the same directory as the executable?
What is use of bit field?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
Why n++ execute faster than n+1 ?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What are global variables?