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 / shikhar
Usha, please donot write WRONG ANSWERS without
confirming....it is not a good practice...thx
The correct answer is D
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Can the curly brackets { } be used to enclose a single line of code?
What does struct node * mean?
write a program in c language to print your bio-data on the screen by using functions.
What is a pragma?
What does the error 'Null Pointer Assignment' mean and what causes this error?
How was c created?
How do you use a 'Local Block'?
What is the difference between struct and typedef struct in c?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is structure padding in c?
Is c language still used?
int i=10; printf("%d %d %d", i, i=20, i);
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Explain the binary height balanced tree?