在cygwin下面直接用vim開一個test.cpp
#include <iostream>
using namespace std;
int main(void)
{
cout << " " << endl; //那個空白是全型空白
return 0;
}
然後用g++ test.cpp編譯後
無法正常顯示那個空白,會產生亂碼
請問要如何解決這個問題
--
#include <iostream>
using namespace std;
int main(void)
{
cout << " " << endl; //那個空白是全型空白
return 0;
}
然後用g++ test.cpp編譯後
無法正常顯示那個空白,會產生亂碼
請問要如何解決這個問題
--
All Comments