View Single Post
Captwheeto's Avatar
Posts: 302 | Thanked: 193 times | Joined on Oct 2008 @ England
#2
I've never touched C++ but I have done a little C.
Is there any reason why you're using them headers?
You should only need stdio, like so


#include <stdio.h>

int main(void)
{
printf("hello, world\n");
return 0;
}

unless you were planning to expand. Were you trying to get stdin from the user? I'm Perl/Haskell guy. Sorry I can't be of more help
 

The Following User Says Thank You to Captwheeto For This Useful Post: