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 / kuamr
b
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
Can a pointer be static?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What’s the special use of UNIONS?
Difference between strcpy() and memcpy() function?
What is const volatile variable in c?
When do we get logical errors?
What are the application of c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
How to implement a packet in C
Why ca not I do something like this?
Are enumerations really portable?
What is a lookup table in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
List the difference between a While & Do While loops?