c打印行号和函数_使用C中的函数名称,行号从任何函数打印错误消息

c打印行号和函数

Sometimes, it is necessary to print some message on logic failure or anytime with the function name and line number, so that program can be debugged and fixed the issue.

有时,有必要在逻辑故障时或在任何时候使用功能名称和行​​号打印一些消息,以便可以调试程序并解决问题。

Prerequisite:

先决条件:

  • __LINE__: To print current line number

    __LINE__ :打印当前行号

  • __func__: To print the name of the current function

    __func__:打印当前函数的名称

Program:

程序:

#include <stdio.h>

float devide(int a, int b)
{
	float result;
	
	if(b!=0){
		result = (float)a/(float)b;
	}
	else{
		result=0;
		printf("Error at line %d in function \"%s\"\n",((__LINE__)-3),__func__);
		//ERROR at 3 lines above: ((__LINE__)-3)
	}

	return result;
}

int main()
{
	printf("%f\n",devide(10,3));
	printf("%f\n",devide(10,0));	
	return 0;
}

Output

输出量

3.333333
Error at line 9 in function "devide"
0.000000


翻译自: https://www.includehelp.com/c-programs/print-error-message-from-any-function-with-function-name-line-number-in-c.aspx

c打印行号和函数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值