switching to use printf instead of "cout <<"

This commit is contained in:
Dan Buch 2010-03-27 22:03:12 -04:00
parent 744aee1b47
commit 0065f2b025

View File

@ -1,10 +1,7 @@
#include <iostream> #include <cstdio>
using namespace std;
int main() int main()
{ {
cout << "Hello World!\n"; printf("Hello World!\n");
return 0; return 0;
} }