what is the difference between #include<> and #include”…”?
Answer Posted / sravankumar
The #include<> and #include" " are almost same, but #include<>
searches the included file in predefined default location(This predefined default location is often an INCLUDE environment variable that denotes the path to your include files)i.e searches the location where the predefined function are present in installed C language, whereas #include" " searches the included file in the current directory first , if not found then goes to the predefined default location.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How many types of functions are there in c?
Why do we use return in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How do you generate random numbers in C?
What are structural members?
a program that can input number of records and can view it again the record
Explain how can I make sure that my program is the only one accessing a file?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What are local static variables? How can you use them?
What is the use of #define preprocessor in c?
What are shell structures used for?
What is the use of #include in c?
Why is c not oop?
Explain why can’t constant values be used to define an array’s initial size?
Are global variables static in c?