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
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How to compare array with pointer in c?
using for loop sum 2 number of any 4 digit number in c language
What is the size of array float a(10)?
Explain how do you determine whether to use a stream function or a low-level function?
Why can’t constant values be used to define an array’s initial size?
Is a house a shell structure?
What is pointer to pointer in c?
Why is c not oop?
Why do we write return 0 in c?
What are the 4 data types?
What is a pointer variable in c language?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
What is the difference between arrays and pointers?
What is %d used for?