Click here to Skip to main content
15,891,749 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Printing a txt file Pin
Benjamin Bruno29-Oct-09 18:26
Benjamin Bruno29-Oct-09 18:26 
GeneralRe: Printing a txt file Pin
dxlee29-Oct-09 3:59
dxlee29-Oct-09 3:59 
GeneralRe: Printing a txt file Pin
Benjamin Bruno29-Oct-09 18:29
Benjamin Bruno29-Oct-09 18:29 
GeneralRe: Printing a txt file Pin
dxlee30-Oct-09 4:57
dxlee30-Oct-09 4:57 
AnswerRe: Printing a txt file Pin
David Crow29-Oct-09 2:51
David Crow29-Oct-09 2:51 
GeneralRe: Printing a txt file Pin
Benjamin Bruno29-Oct-09 19:18
Benjamin Bruno29-Oct-09 19:18 
QuestionSpecial Significance of CSingleLock and CMultiLock ????? Pin
Hari_1628-Oct-09 19:16
Hari_1628-Oct-09 19:16 
Questionwrite problem in ios::in|ios::out|ios::app mode Pin
xbottle28-Oct-09 18:05
xbottle28-Oct-09 18:05 
Hi all,
My code is like this:
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
	fstream f;
	char strMsg[512];
	char buf[512];

	while(1)
	{
		f.open("c:\\1.txt", ios::in|ios::out|ios::app );
		if(f.is_open())
		{
			int i=0;
			char s[512];

			memcpy(s,"hello",512);
			i = strlen(s);
			f<<s<<std::endl;
			f.seekg(0, ios::beg);
			while(f.getline(strMsg, 512))
			{
				int i=0;
				char s[512] = "";
				memcpy(s,"hello",512);
				i = strlen(s);
				f <<s <<std::endl;
			}
			f.close();
		}

	}
}

starting, the file database.txt is empty.
The first "f<
AnswerRe: write problem in ios::in|ios::out|ios::app mode [modified] Pin
Randor 28-Oct-09 19:09
professional Randor 28-Oct-09 19:09 
GeneralRe: write problem in ios::in|ios::out|ios::app mode Pin
xbottle28-Oct-09 20:20
xbottle28-Oct-09 20:20 
GeneralRe: write problem in ios::in|ios::out|ios::app mode Pin
Randor 28-Oct-09 21:48
professional Randor 28-Oct-09 21:48 
GeneralRe: write problem in ios::in|ios::out|ios::app mode Pin
xbottle29-Oct-09 23:33
xbottle29-Oct-09 23:33 
GeneralRe: write problem in ios::in|ios::out|ios::app mode Pin
enhzflep28-Oct-09 21:53
enhzflep28-Oct-09 21:53 
AnswerRe: write problem in ios::in|ios::out|ios::app mode Pin
David Crow29-Oct-09 2:56
David Crow29-Oct-09 2:56 
QuestionRe: write problem in ios::in|ios::out|ios::app mode Pin
David Crow29-Oct-09 2:54
David Crow29-Oct-09 2:54 
Questionwhy optimization since program is trade-off between time and memory Pin
jianzhuhuai28-Oct-09 14:36
jianzhuhuai28-Oct-09 14:36 
AnswerRe: why optimization since program is trade-off between time and memory Pin
Rozis29-Oct-09 12:07
Rozis29-Oct-09 12:07 
GeneralRe: why optimization since program is trade-off between time and memory Pin
jianzhuhuai31-Oct-09 5:35
jianzhuhuai31-Oct-09 5:35 
Questionwhy add member function in classview does not work for overloaded function operator &lt;() Pin
jianzhuhuai28-Oct-09 14:15
jianzhuhuai28-Oct-09 14:15 
AnswerRe: why add member function in classview does not work for overloaded function operator &lt;() Pin
«_Superman_»28-Oct-09 14:37
professional«_Superman_»28-Oct-09 14:37 
AnswerRe: why add member function in classview does not work for overloaded function operator &lt;() Pin
Adam Roderick J28-Oct-09 18:30
Adam Roderick J28-Oct-09 18:30 
Questionconvert CString to const char * Pin
Manmohan2928-Oct-09 7:23
Manmohan2928-Oct-09 7:23 
AnswerRe: convert CString to const char * Pin
David Crow28-Oct-09 7:37
David Crow28-Oct-09 7:37 
AnswerRe: convert CString to const char * Pin
transoft28-Oct-09 7:39
transoft28-Oct-09 7:39 
AnswerRe: convert CString to const char * Pin
«_Superman_»28-Oct-09 7:56
professional«_Superman_»28-Oct-09 7:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.