View Single Post
Old 10-13-2007, 03:33 AM   #2 (permalink)
jaeusm
 
Software Developer

Join Date: Mar 2006

Location: Columbus, OH

Posts: 569

jaeusm is on a distinguished road

Default Re: What's wrong in this C++ code

Remove the '.h' extension on the end of each include. Also, change stdio to cstdio. It should look like this:
Code:
#include <iostream>
#include <cstdio>
For future reference, use code tags when posting code in this forum.
jaeusm is offline