关于嵌入式的c语言程序。都是学习c语言的经典例子

源代码在线查看: textcopy.c

软件大小: 174 K
上传用户: pipiooxx
关键词: c语言 嵌入式 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				
				void main(int argc, char **argv)
				 {
				   FILE *input, *output;
				
				   char string[256];
				
				   if ((input = fopen(argv[1], "r")) == NULL)
				     printf("Error opening %s\n", argv[1]); 
				   else if ((output = fopen(argv[2], "w")) == NULL)
				     {
				       printf("Error opening %s\n", argv[2]);
				       fclose(input);
				     }
				   else 
				     {
				       while (fgets(string, sizeof(string), input))
				         fputs(string, output);
				
				       fclose(input);
				       fclose(output);
				     }
				 }
							

相关资源