<<<Index>>>

std::cout << Formatted Output

#include <iostream>

void main( )

{

     std::cout << "Hello, world!";

     int i = 1;

     double d = 0.5;

     std::cout << i << '\t' << d;

}

<<<Index>>>