#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"flush"<<flush;//flushes the buffer,adds no data
cout<<"ends"<<ends;//inserts a null,then flushes the buffer
cout<<"endl"<<endl;//inserts a newline,then flushes the buffer
cout<<"仔细观察现在光标的位置在哪里?";
system("pause");
return 0;
}
看一看就知道其中的区别了。