|
-
Jul 29th, 2010, 11:17 PM
#4
Thread Starter
Frenzied Member
Re: How should the #include statement be used?
 Originally Posted by Max Peck
It's been a few years since I used C ... OK, ten ... but the difference is the location in which the included resource is found:
#include <stdio.h> // Locates and loads stdio.h in where the LIB environment variable points to.
#include "stdio.h" // Loads stdio.h in the current directory.
-Max
In which situation should I use each? They both seem to work when I tried it for the same use in the program.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|