When is .h not needed to include a header file?

Posted by user198729 on Stack Overflow See other posts from Stack Overflow or by user198729
Published on 2010-03-28T09:21:05Z Indexed on 2010/03/28 9:23 UTC
Read the original article Hit count: 195

Filed under:
|

This works:

#include <iostream>
using namespace std;

but this fails:

#include <stdio>

When is .h not needed?

© Stack Overflow or respective owner

Related posts about c++

Related posts about include