visual c++ 6.0 tutorials

Started by
0 comments, last by killadude 22 years, 2 months ago
hey can anyone tell me where i can get full free tutorials on c++ but i need it to cover vc++ 6.0 cuz i tried learning all the other tutorials but they cover older versions and the statements they use are old or somethin. also- #include <iostream.h> doesnt allow you to just use cout<< without std:: its not working for me... or am i just plain wrong??? SKATEBOARDING IS NOT A CRIME!
SKATEBOARDING IS NOT A CRIME!
Advertisement
quote:Original post by killadude
#include <iostream.h>
doesnt allow you to just use
cout<< without std::

<iostream.h> - cout << whatever << endl;
<iostream> - std::cout << whatever << std::endl

Note that the second one doesn''t have a ".h" extension.

[ GDNet Start Here | GDNet Search Tool | GDNet FAQ | MS RTFM [MSDN] | SGI STL Docs | Google! ]
Thanks to Kylotan for the idea!

This topic is closed to new replies.

Advertisement