what is the difference between #include<stdio.h> and
#include "stdio.h" ?
Answer Posted / n
implementation defined. read manual for the compiler you use.
if include " " fails, then include < > is tried
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is difference between main and void main?
Explain the term printf() and scanf() used in c language?
How do you list a file’s date and time?
How can a program be made to print the line number where an error occurs?
What are the scope of static variables?
Why string is used in c?
Do pointers store the address of value or the actual value of a variable?
Can we change the value of static variable in c?
Difference between macros and inline functions? Can a function be forced as inline?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is the modulus operator?
Explain what is the use of a semicolon (;) at the end of every program statement?
What are register variables? What are the advantage of using register variables?
What is use of null pointer in c?
What is array within structure?