因为没有源代码,只能做错误分析如下:00000.c(48): error C202: 'n': undefined identifier 这个错误信息表明00000.c文件的48行的变量n没有定义,修改方法,在使用前定义下n,例如:int n = 0;00000.c(49): error C202: 'k': undefined identifier 这个错误信息表明00000.c文件的49行的变量k...
百度试题 题目keil软件中出现如下提示:TEXT1.C(14): error C202: 'b': undefined identifier 相关知识点: 试题来源: 解析 14行,变量b没有定义 反馈 收藏
P1=0*ff; 这一句里的变量名ff没有被定义过,所以使用时会出现error 要延迟几秒的话可以用sleep()函数
led.c(27): error C202: 'p2': undefined identifier 解决方法:p2改为大写的P2
编译出现error C202: 'set': undefined identifier 这个提示,这仅仅是刚开始的提示。其中,改了这条错误后,就会出现更多的错误了。程序中调用的子函数,并没有函数实体,就是只调用,并没有写真的子函数。还有程序中所有的变量都没有声明。还有很多处类似TR0,写成TR 0了,中间多出空格。这程序是从...
为什么出现 error C202:"ff":undefined identifier #include <reg51.h> void delay(unsigned char i); void main() { while(1){ P1=0*00; delay(200); P1=0*ff; delay(200); } } void delay(unsigned char i) { unsigned char j,
error C202: 'P5': undefined identifier 代码如下: #include "reg51.h" sbit p1_0 = P1 ^ 0; sbit p3_0 = P3 ^ 0; sbit p5_0 = P5 ^ 0; //报错 void main(void) { while(1) { p1_0 = 0; p3_0 = 0; p5_0 = 0; }
是说tmp这个变量没有定义,需要在这行的前面定义tmp的类型和初始值
ED.C(12): error C202: \'p0\': undefined identifier问题补充:匿名 2013-05-23 12:21:38 ed.c(12):错误C202:\'P0 \':未定义的标识符 匿名 2013-05-23 12:23:18 ED.C (12) :错误C202 :\\ ‘p0 \\’ :未定义标识符 匿名 2013-05-23 12:24:58 ED.C( 12) : 错误C202 : \...
i write this code for LDR connected with the AT89s52 through the ADC MCP3208. i write the below code. #include<at89s52.h> #include<stdio.h> sbit CLK=P1