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
Explain the advantages of using macro in c language?
Explain how do you view the path?
When should you not use a type cast?
How can I get back to the interactive keyboard if stdin is redirected?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Why doesnt long int work?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
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 the size of structure in c?
What is the auto keyword good for?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Why use int main instead of void main?
Explain what is the benefit of using enum to declare a constant?
Explain how can you restore a redirected standard stream?
When should a type cast not be used?