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
Are pointers really faster than arrays?
What do mean by network ?
How can I recover the file name given an open stream or file descriptor?
What is the difference between strcpy() and memcpy() function in c programming?
What is I ++ in c programming?
Can you think of a logic behind the game minesweeper.
How can I copy just a portion of a string?
How can I remove the leading spaces from a string?
Can you add pointers together? Why would you?
Explain how can I make sure that my program is the only one accessing a file?
What is function definition in c?
Write a program to check prime number in c programming?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What do you mean by keywords in c?
How can I insert or delete a line (or record) in the middle of a file?