what is the difference between #include<> and #include”…”?
Answer Posted / hrpynux@gmail.com
For #include "" a compiler normally searches the folder of the file which contains that include and then the other folders. For #include <> the compiler does not search the current file's folder.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is queue in c?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
How we can insert comments in a c program?
c program to compute AREA under integral
Why main is used in c?
Define and explain about ! Operator?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What are c identifiers?
What is the translation phases used in c language?
Where register variables are stored in c?
Can you add pointers together? Why would you?
Can a pointer be volatile in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is dynamic dispatch in c++?
What is an endless loop?