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 / santosh
ans is d optioon because in c
we write hedder files in the following format,
#include<stdio.h>
#include "stdio.h"
there can be many number of file names.
above both formats are correct.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Explain low-order bytes.
Explain what is wrong in this statement?
Why is c called c not d or e?
What are the advantages and disadvantages of a heap?
differentiate built-in functions and user – defined functions.
Why clrscr is used after variable declaration?
Which is best linux os?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is the explanation for prototype function in c?
Explain what is the benefit of using #define to declare a constant?
What is define directive?
What is the basic structure of c?
What are the advantages of union?
What are preprocessor directives in c?