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 / safish
D
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What is external variable in c?
Why c is called a middle level language?
Does c have function or method?
What is static memory allocation?
What are the features of c languages?
Why we not create function inside function.
Are the expressions * ptr ++ and ++ * ptr same?
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.
What are valid operations on pointers?
What is scope rule in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(ā-ā); Return 0;
What is mean by data types in c?
What is huge pointer in c?
Explain the array representation of a binary tree in C.