[code:1]
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#define TT
void GoPass1(char buf[40]);
void GoPass2(char buf[40]);
int main(int argc, char *argv[]) {
FILE *infp, *outfp;
char buf[40];
infp = fopen(argv[1], "r");
outfp = fopen(argv[2], "w");
if(argc < 3) {
printf("파일명 원본파일명 목적파일명\n");
printf("위의 형식을 따라 주세요\n");