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


Please Help Members By Posting Answers For Below Questions

Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

5458


What is wrong with this declaration?

604


Why do we need a structure?

579


What is a stream in c programming?

583


Why is void main used?

609






What is a sequential access file?

644


What are the types of data structures in c?

594


Difference between goto, long jmp() and setjmp()?

697


Write the syntax and purpose of a switch statement in C.

612


What are the advantages of c language?

656


What does %c do in c?

578


What functions are used for dynamic memory allocation in c language?

592


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

676


What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

652


Write a program on swapping (100, 50)

633