what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / shahab
# include<stdio.h>--- It searches one directory i.e
specified list of directory.
# include"stdio.h"---- It searches two i.e specified list
of directory & current directory.
| Is This Answer Correct ? | 66 Yes | 10 No |
Post New Answer View All Answers
What are bitwise shift operators in c programming?
What is #define?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What is variable declaration and definition in c?
Why is c called "mother" language?
What is the basic structure of c?
What are keywords c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Why do we use & in c?
Can a pointer be static?
How do you define a function?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Write a factorial program using C.
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.