本文包含原理图、PCB、源代码、封装库、中英文PDF等资源
您需要 登录 才可以下载或查看,没有账号?注册会员
×
#include <stdio.h>
void main( )
{
int a,b,c,d;
unsigned int x,y;
a=-5; b= 71;
x=15; y=10;
c=a-x; d=b+y;
printf("a-x=%d, b+y=%d\d",c,d);
}
在编译KEIL软件下,一点project--------build target,
出现以下的错误
SYMBOL: MAIN
MODULE: 整形常量.obj (整形常量)
*** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS
SEGMENT: ?PR?MAIN?整形常量
Program Size: data=30.1 xdata=0 code=1142
Target not created
以下是范例4-5const修饰符使用的示列程序97页
#include <stdio.h>
const double PI=3.14159;
void mian()
{
int r;
double S,L;
r=3;
S=r*r*PI;
L=2PI*r;
printf("the area S=%f,the length L=%f\n",S,L);
}
报有如下的错误Build target 'Target 1'
compiling const修饰符.c...
CONST修饰符.C(9): error C141: syntax error near 'PI'
Target not created
下面是4-4示列代码中的一个程序,96页
#include<stdio.h>
void main( )
{
float a;
double b;
a=-3134.5577;
b=2790.5;
printf("a=%f\nb=%\n",a,b);
printf("%f",4.14159);
}
谈出以下错误信息
Build target 'Target 1'
compiling 浮点变量.c...
linking...
Program Size: data=46.1 xdata=0 code=2584 |