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 / jj
ans-d.
1st one searches from current directory,
2nd one searches from list of directories specified in
inlcude path
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is context in c?
What is c basic?
How can I handle floating-point exceptions gracefully?
Can a void pointer point to a function?
What is the use of static variable in c?
What is string in c language?
What is the difference between text files and binary files?
When should a far pointer be used?
What is double pointer in c?
Is main is a keyword in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What does do in c?
How do you print an address?
Explain what is the difference between far and near ?
What is the use of bitwise operator?