matlab line指令_#line指令示例| C预处理程序

matlab line指令

The #line is a preprocessor directive in C programming language; it is used to reset the line number in the code. We can reset line number from any line in the code.

#line是C编程语言中的预处理程序指令; 它用于重置代码中的行号。 我们可以从代码中的任何行重置行号。

Example:

例:

#include <stdio.h>	/*line 1*/
/*line 2*/
int main(){	/*line 3*/
/*line 4*/
	printf("Hello world\n");	/*line 5*/
	//print current line	/*line 6*/
	printf("Line: %d\n",__LINE__);	/*line 7*/
	//reset the line number by 36	/*line 8*/
	#line 36	/*reseting*/
	//print current line	/*line 36*/
	printf("Line: %d\n",__LINE__);	/*line 37*/
	printf("Bye bye!!!\n");	/*line 39*/
/*line 40*/
	return 0;	/*line 41*/
}	/*line 42*/

Output

输出量

    Hello world
    Line: 7
    Line: 37
    Bye bye!!!

翻译自: https://www.includehelp.com/c-programs/line-directive-example-in-c.aspx

matlab line指令

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值