What is the difference between these two syntax#include and #include "stdio.h"

Questions by ankur sharma

Showing Answers 1 - 9 of 9 Answers

anil

  • Mar 13th, 2007
 

1. #i nclude is used for adding library inbuild files and user defined files.
but
       #include "stdio.h" in particularly used for adding "standerd input output filers"
 
 however the correct syntex is    #include<stdio.h>

  Was this answer useful?  Yes

Bharti

  • Mar 15th, 2007
 



#include<filename>      : will search for the file in the specified directory


#include"filename"       : will search for the file in current directory as well as specified directory

jatin bhatia

  • Mar 26th, 2007
 

#include"stdio.h" will only compile standard input output function

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions