C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.141

源代码在线查看: 9-26.txt

软件大小: 128 K
上传用户: xiaoluya54
关键词: my_Include include define 3.141
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* 范例:9-26 */
				#include 
				#include 
				void main(int argc,char *argv[])
				{
				  if(argc!=2)
				  {
				    printf("Syntax Error!\n\tp9-26 filename");
				    exit(1);
				  }
				  if((remove(argv[1]))!=-1)
				    printf("Delete %s success!\n",argv[1]);
				  else
				    printf("Cannot delete %s\n",argv[1]);
				}
				
				程序执行结果:(假设oo.txt为已存在(要删除)的文件名) 
				D:\TC>p9-26 oo.txt
				Delete oo.txt success!
				
							

相关资源