Click here to Skip to main content
15,907,687 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: file output Pin
mpapeo17-Mar-05 4:12
mpapeo17-Mar-05 4:12 
GeneralRe: file output Pin
David Crow17-Mar-05 4:53
David Crow17-Mar-05 4:53 
GeneralRe: file output Pin
John R. Shaw17-Mar-05 6:07
John R. Shaw17-Mar-05 6:07 
GeneralRe: file output Pin
mpapeo17-Mar-05 6:45
mpapeo17-Mar-05 6:45 
GeneralRe: file output Pin
David Crow17-Mar-05 7:54
David Crow17-Mar-05 7:54 
GeneralRe: file output Pin
John R. Shaw17-Mar-05 8:00
John R. Shaw17-Mar-05 8:00 
GeneralRe: file output Pin
mpapeo17-Mar-05 20:12
mpapeo17-Mar-05 20:12 
GeneralRe: file output Pin
John R. Shaw18-Mar-05 6:16
John R. Shaw18-Mar-05 6:16 
You need to find a book or sight on C programming.

Here:
1) Create and empty console project.
2) Create a new new file named simple.c.
3) Copy the following into simple.c.
// simiple.c

#include "stdio.h"

int main(int argc, char* argv[])
{
	FILE* fp = fopen("test.txt","wt");
	if( fp )
	{
		int i;
		for( i=0; i<10; ++i )
			fprintf(fp,"Line %d\n",i);
		fclose(fp);
	}
	return 0;
}

4) Press F5.
5) Open the file test.txt in you editor to see results.

That is all!

INTP
"The more help VB provides VB programmers, the more miserable your life as a C++ programmer becomes."
Andrew W. Troelsen
GeneralRe: file output Pin
mpapeo19-Mar-05 9:55
mpapeo19-Mar-05 9:55 
GeneralNewbie Question about Classes Pin
RedDragon2k17-Mar-05 1:40
RedDragon2k17-Mar-05 1:40 
GeneralRe: Newbie Question about Classes Pin
Ravi Bhavnani17-Mar-05 1:42
professionalRavi Bhavnani17-Mar-05 1:42 
GeneralRe: Newbie Question about Classes Pin
RedDragon2k17-Mar-05 1:46
RedDragon2k17-Mar-05 1:46 
GeneralRe: Newbie Question about Classes Pin
eli1502197917-Mar-05 2:08
eli1502197917-Mar-05 2:08 
GeneralRe: Newbie Question about Classes Pin
ThatsAlok17-Mar-05 2:10
ThatsAlok17-Mar-05 2:10 
GeneralRe: Newbie Question about Classes Pin
David Crow17-Mar-05 2:34
David Crow17-Mar-05 2:34 
GeneralRe: Newbie Question about Classes Pin
Cedric Moonen17-Mar-05 2:48
Cedric Moonen17-Mar-05 2:48 
GeneralRe: Newbie Question about Classes Pin
V.17-Mar-05 2:07
professionalV.17-Mar-05 2:07 
GeneralRe: Newbie Question about Classes Pin
ThatsAlok17-Mar-05 2:33
ThatsAlok17-Mar-05 2:33 
GeneralRe: Newbie Question about Classes Pin
David Crow17-Mar-05 2:37
David Crow17-Mar-05 2:37 
GeneralRe: Newbie Question about Classes Pin
ThatsAlok17-Mar-05 3:06
ThatsAlok17-Mar-05 3:06 
GeneralRe: Newbie Question about Classes Pin
David Crow17-Mar-05 3:49
David Crow17-Mar-05 3:49 
GeneralRe: Newbie Question about Classes Pin
V.17-Mar-05 2:59
professionalV.17-Mar-05 2:59 
GeneralRe: Newbie Question about Classes Pin
ThatsAlok17-Mar-05 3:05
ThatsAlok17-Mar-05 3:05 
GeneralRe: Newbie Question about Classes Pin
V.17-Mar-05 3:18
professionalV.17-Mar-05 3:18 
GeneralRe: Newbie Question about Classes Pin
ThatsAlok17-Mar-05 18:41
ThatsAlok17-Mar-05 18:41 

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.