What is the use of the #include directive?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
The #include directive is used to include header files in a program. For example, #include<stdio.h> includes the standard input-output library.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
The #include directive is used to include header files in a program. For example, #include<stdio.h> includes the standard input-output library.
| Is This Answer Correct ? | 0 Yes | 0 No |
The #include directive is used to include header files in a program. For example, #include<stdio.h> includes the standard input-output library.
| Is This Answer Correct ? | 0 Yes | 0 No |
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
Write a program to print factorial of given number without using recursion?
What is the difference between single charater constant and string constant?
What is the difference between a free-standing and a hosted environment?
What does d mean?
What does 3 periods mean in texting?
What functions are used in dynamic memory allocation in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
what is difference between ANSI structure and C99 Structure?
what is the hardware model of CFG( context free grammar)
how to find out the union of two character arrays?