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
Write a program for Overriding.
What is the advantage of using #define to declare a constant?
With the help of using classes, write a program to add two numbers.
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What does printf does?
How can I write a function that takes a format string and a variable number of arguments?
What is advantage of pointer in c?
Which is more efficient, a switch statement or an if else chain?
program to convert a integer to string in c language'
Explain how do you list a file’s date and time?
Is anything faster than c?
What are types of structure?
List the variables are used for writing doubly linked list program.
Explain how can I convert a number to a string?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.