hello the header files included in "" are user defined..or we can say the customized ones..wheres in <> means they are prefined in the c++ library, and are used "as is" , one more aspect of it is that, if you have two header files of the same name, one is user defined and other is system defined, then the user defined is taken in action
________________________________ From: shabble <[EMAIL PROTECTED]> To: [email protected] Sent: Friday, November 21, 2008 9:52:11 PM Subject: [c-prog] Re: Header file?? --- In [EMAIL PROTECTED] com, "Md Tarik Mahmud" <[EMAIL PROTECTED] > wrote: > > i'm new to learn C. i'm using Visual studio C++ to learn C. i found > that sometimes header files are included in this way: > > #include "stdio.h" > > but sometimes in this way: > > #include <stdio.h> > > > can anyone clear the differences between this two ways? is it for > different purposes? or it's same to use anyone of the above 2 ways? See: http://tech. groups.yahoo. com/group/ c-prog/files/ html/headers. html [Non-text portions of this message have been removed]
