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
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Is calloc better than malloc?
Why c is called top down?
What are identifiers in c?
Are c and c++ the same?
What are the types of i/o functions?
What is pointer to pointer in c?
What is operator promotion?
What is variables in c?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
In a header file whether functions are declared or defined?
What does typedef struct mean?
What is pre-emptive data structure and explain it with example?
Explain about block scope in c?
What are the __date__ and __time__ preprocessor commands?