what is the difference between #include<> and #include”…”?
Answer Posted / anandi
Both #include<> and #include" " are similar used to include
the header files.....But we can use both #include<> and
#include" " for predefined header files...... At the same
time we can not use the #include<> for the user-defined
header files..... We should use #include" " for the user-
defined header files......
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is meant by inheritance?
What is array within structure?
What is the scope of an external variable in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is || operator and how does it function in a program?
Write a program to identify if a given binary tree is balanced or not.
How many types of operator or there in c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What does a function declared as pascal do differently?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
How can I run c program?
Why n++ execute faster than n+1 ?
How can I change their mode to binary?
program to convert a integer to string in c language'
Where static variables are stored in memory in c?