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
Is c# a good language?
How will you write a code for accessing the length of an array without assigning it to another variable?
what are the 10 different models of writing an addition program in C language?
What are the different categories of functions in c?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Do you know the difference between exit() and _exit() function in c?
a program that can input number of records and can view it again the record
Explain what is a 'locale'?
Explain the difference between exit() and _exit() function?
When should you use a type cast?
What is difference between array and structure in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How can I convert a number to a string?
What is difference between union and structure in c?