#include <iostream> int main { for(int i = 0; i < 5; i++) std::cout << i << std::endl; return 0; }
[wz2@localhost ~]$ '/home/wz2/a.out' 0 1 2 3 4