what is the difference between <stdio.h>and "stdio.h"?

Answer Posted / ramakrishna yechuri

In the first case ie. <stdio.h>,the compiler will search
for the presence of the file named stdio.h in the
current directory.
Whereas in the second case("stdio.h"),compiler will search
in all the directories.

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does sksksk mean in text slang?

1537


What is coupling in oop?

600


What is methods in oop?

542


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1657


What polymorphism means?

622






What is the purpose of enum?

581


Is enum a class?

607


What does no cap mean?

592


write a program that takes input in digits and display the result in words from 1 to 1000

1989


What are the important components of cohesion?

557


What is class and example?

569


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2168


Why multiple inheritance is not possible?

600


What are constructors in oop?

594


What is difference between multiple inheritance and multilevel inheritance?

603