what is the difference between <stdio.h> and "stdio.h"
Answer Posted / shipra
#include<stdio.h> this command look for the file stdio.h
in the specified list of directories only
and
#include"stdio.h" would look the file stdio.h in the current
directory as well as the specified list of directories as
mentioned in the include search path
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
What is the meaning of 2d in c?
How many levels of pointers can you have?
Is swift based on c?
develop algorithms to add polynomials (i) in one variable
Explain what is wrong with this program statement?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
How are portions of a program disabled in demo versions?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Explain can you assign a different address to an array tag?
what is the role you expect in software industry?
Do you know pointer in c?
What is the best style for code layout in c?
Explain the difference between ++u and u++?
Is boolean a datatype in c?
can we implement multi-threads in c.