c语言 函数的参数传递示例_带示例的C语言中的named()函数

c语言 函数的参数传递示例

C语言中的rename()函数 (rename() function in C)

The rename() function is defined in the <stdio.h> header file.

在<stdio.h>头文件中定义了rename()函数

Prototype:

原型:

    int rename(const char* old-filename, const char* new-filename);

Parameters: const char* old-filename, const char* new-filename

参数: const char *旧文件名,const char *新文件名

Return type: int

返回类型: int

Use of function:

使用功能:

When we are dealing with files then sometimes we need to rename some files. In file handling, we use rename() function to rename the files. The prototype of the function rename() is int rename(const char* old-filename, const char* new-filename);

当我们处理文件时,有时我们需要重命名一些文件。 在文件处理中,我们使用rename()函数来重命名文件。 函数rename()原型是int named(const char * old-filename,const char * new-filename);

Here, old-filename is the previous name of the file which has to renamed with the new name as new-filename. It returns zero if the file is successfully renamed and non-zero if an error has occurred.

在这里, old-filename是文件的先前名称,必须使用新名称将其重命名为new-filename 。 如果文件已成功重命名,则返回零;如果发生错误,则返回非零。

C中的named()示例 (rename() example in C)

#include <stdio.h>
#include <stdlib.h>

int main(){
	FILE *f;

	//Check the existence of that file
	if((f=fopen("includehelp.txt","r"))==NULL){
		printf("File does not exist...\n");
	}
	else{
		printf("File is exist.\n");
	}
	fclose(f);
	
	//Rename the file
	if(rename("includehelp.txt","new_includehelp.txt"))
		printf("Rename error.....\n");
	else
		printf("File is renamed\n");
	
	if((f=fopen("includehelp.txt","r"))==NULL){
		printf("File does not exist...\n");
	}
	else{
		printf("File is exist.\n");
	}
	fclose(f);
	
	if((f=fopen("new_includehelp.txt","r"))==NULL){
		printf("File does not exist...\n");
	}
	else{
		printf("File is exist.\n");
	}
	fclose(f);
	
	return 0;
}

Output

输出量

rename() example in C language
rename() example in C language

翻译自: https://www.includehelp.com/c-programs/rename-function-in-c-language-with-example.aspx

c语言 函数的参数传递示例

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值