파일입출력 질문해봅니다..

embeddeds0의 이미지

#include
int main()
{
FILE *fp1, *fp2;
char *string = "Hello World!!";
long count, last;
char ch;

if ((fp1 = fopen("a.txt", "rb+")) == NULL) { // "a.txt" 파일을 읽고 쓰기가 가능하도록 파일을 개방한다.
printf("File Open Error!!\n");
fclose(fp1);
return 0;
}

fputs(string, fp1); // str에 저장되어 있는 문자열을 fp1 파일포인터에 연결된 파일에 출력한다.

if ((fp2 = fopen("b.txt", "wb")) == NULL) { // "b.txt" 파일을 쓰기 위해 파일을 개방한다.
printf("File Write Error!!\n");
fclose(fp2);
}
fseek(fp1, 0, SEEK_END); // 파일 위치 지시자를 파일 끝에 가리키게 한 후
last = ftell(fp1); // 현재 파일 위치 지시의 크기를 리턴하여 last에 대입.(총 바이트가 저장됨)

for(count=last-1; count >= 0; count--) { // // 파일의 내용을 역으로 출력한다.
fseek(fp1, count, SEEK_SET); // count를 감소 시키면서 파일위치지시자를 왼쪽으로 이동시킨다.
if(ch=fgetc(fp1) != NULL) { // 현재 파일 위치 지시자가 가리키고 있는 문자를 ch에 저장한다.
fputc(ch, fp2); // 다시 ch에 저장되어 있는 문자를 fp2 파일 포인터에 연결된 파일(Test2.txt)에 저장한다.
}
}

// 파일 입출력이 끝났으므로 파일을 닫는다.

fclose(fp1);
fclose(fp2);

}

--------------------------------------------------------------------------------
a.txt 에 문자열을 입력 받아서 b.txt 에 그 문자열을 역으로 출력하는 프로그램을 만들었는데요..

실행해보면 a.txt에 fputs() 함수로 파일로 출력해둔 문자열은 그대로 들어 있는데

b.txt 파일을 열어보면 $$$$$$$$$ 이런 이상한 문자가 들어가있네요;;

먼가 잘못된거 같은데 어디 부분을 고쳐야될지 모르겠습니다..

또 제가 짠 소스를 좀 더 보기좋게 변형하려면 어떻게 수정해야 될까요?

답변 부탁드립니다 ~

shint의 이미지


fread와 fwrite를 사용하시는 방법이 좀 더 수월할겁니다.

#include <stdio.h>
#include <stdlib.h>
 
int main(int argc, char* argv[])
{
	FILE *fp1, *fp2;
	char *string = "Hello World!!";
	long count, max;
	char ch;
 
	if ((fp1 = fopen("a.txt", "rb+")) == NULL) { // "a.txt" 파일을 읽고 쓰기가 가능하도록 파일을 개방한다.
		printf("File Open Error!!\n");
		fclose(fp1);
		return 0;
	}
//
	fputs(string, fp1); // str에 저장되어 있는 문자열을 fp1 파일포인터에 연결된 파일에 출력한다.
	printf("-------%s--------\n", string);
 
 
	if ((fp2 = fopen("b.txt", "wb")) == NULL) { // "b.txt" 파일을 쓰기 위해 파일을 개방한다.
		printf("File Write Error!!\n");
		fclose(fp2);
		return 0;
	}
	fseek(fp1, 0, SEEK_END); // 파일 위치 지시자를 파일 끝에 가리키게 한 후
	max = ftell(fp1); // 현재 파일 위치 지시의 크기를 리턴하여 last에 대입.(총 바이트가 저장됨)
	printf("-------%d--------\n", max);
 
 
	max = max-1;
	while(1)
	{
		max = max-1;
		if(max == -1) break;
		fseek(fp1, max, SEEK_SET);
		ch=fgetc(fp1);
		printf("%c", ch);
		fputc(ch, fp2);
	}
 
	// 파일 입출력이 끝났으므로 파일을 닫는다.
 
	fclose(fp1);
	fclose(fp2);
	system("pause");
	return 0;
}

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

embeddeds0의 이미지

덕분에 해결했습니다~

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.