... <看更多>
c while getline 在 getline() in C creating an infinite loop and skipping first word? 的推薦與評價
相關內容
-
Does getline work inside of a while loop? C++ [closed ...
-
cin.getline in while loop - Stack Overflow
-
How does while loop of getline() function introduces ...
-
How to loop the getline function in C++ [duplicate ...
-
stackoverflow.com 的其他相關資訊
-
Does getline work inside of a while loop? C++ [closed ...
-
cin.getline in while loop - Stack Overflow
-
How does while loop of getline() function introduces ...
-
How to loop the getline function in C++ [duplicate ...
-
stackoverflow.com 的其他相關資訊
c while getline 在 [問題] 請問getline讀檔並儲存的方法- 看板C_and_CPP 的推薦與評價
弱弱的問一下,之前只用過C的fopen然後用一個指標
和C++ 直接ifstream infile 然後 while (!infile.eof()) 等這種一次讀字元的
(但ifstream這種寫法 是不是會直接跳過空白和換行字元?)
現在想練習用一下getline來讀檔,如以下
5 4 1 3
2
8 3
類似這種的,每行長度不固定,幾行也不固定
讀檔然後存起來
但是getline一次讀一行,下個迴圈就自動換行
我如果用
char buffer[MAX]
ifstream infile("test.txt");
while (!infile.eof())
{
infile.getline(buffer,MAX);
}
這種寫法雖然可以當下印出來
但該怎麼寫 才能每行分別存起來?
想特別練習一下getline讀檔用法,但搞半天不知道怎麼弄比較合適...
感謝大家
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 175.182.224.51
... <看更多>