what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / sreekanth
#include "stdio.h"
The compiler will search for a particular stdio.h in the
current working directory only
where as <stdio.h> the complier looks into default dir.
which is in most cases /include/lib or you can define this
directory by your own.
| Is This Answer Correct ? | 30 Yes | 14 No |
Post New Answer View All Answers
given post order,in order construct the corresponding binary tree
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
How do I determine whether a character is numeric, alphabetic, and so on?
What is assignment operator?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Give me the code of in-order recursive and non-recursive.
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What are the different types of linkage exist in c?
Can you write a programmer for FACTORIAL using recursion?
What is the difference between ++a and a++?
Why does this code crash?
What is the purpose of type declarations?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What are types of structure?