Name: Anonymous 2007-11-22 14:09
so, I've got EXPERT PROGRAMMERS telling me to use printf instead of cout in c++, ok but why? what is the difference (in b4 stream)
/* hello.c */
#include <stdio.h>
main() {
printf("Hello world!");
}// hello.cpp
#include <iostream>
using namespace std;
main() {
cout << "Hello world!";
}