Title: Strange cout behaviour

Hi!
I compile and run small application on 2  RH8 gcc3.2 stations and get different behavior of cout:
On Celeron 1000 Mhz I don't get out line without endl at the end(#6, output is 5 only),
On PII(I?) 650 Mhz I get all lines(output 5\nfilename).
What can be the cause? 

1. #include <iostream>
2. using namespace std;
3. int main()
4. {
5.        cout << __LINE__ << endl;
6.        cout << __FILE__;
7.        return 0;
8. }

Boulgakov Andrei

Reply via email to