C++ Code:
  1. #include <iostream.h>
  2.  
  3. int main() {
  4. std::cout<<"Hello World!"<<endl;
  5. return 0;
  6. }

vb Code:
  1. #include <iostream.h>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. cout << "Hello World!" << endl;
  7. return 0;
  8. }

See in the first example how you have to use std::cout well you would have to do that everytime you use methods and members in the std namespace. Where as in the second example you will not have to use std:: before any member

You can make your own namespaces to

vb Code:
  1. namespace shop{
  2. int item;
  3. int price;
  4. }
  5.  
  6. //....
  7.  
  8. using namespace shop;

so you can do

vb Code:
  1. item = 5;

instead of
vb Code:
  1. shop::item = 5;

Hope that helped a little