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 |
What are the complete rules for header file searching?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
Explain the process of converting a Tree into a Binary Tree.
write a programme to convert temperature from farenheit to celcius?
write an algorithm and a program to count the number of elements in a circularly singly linked list
What is the difference between test design and test case design?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
What is the explanation for prototype function in c?
Explain what are compound statements?
why we are using float in C
how many error occurs in C language ?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....