这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » MCU » 如何在axd下面的console看到print的输出?

共2条 1/1 1 跳转至

如何在axd下面的console看到print的输出?

菜鸟
2006-11-25 19:53:24     打赏
如何在axd下面的console看到print的输出?

1, 我的设置:

a, codewarrior: entry point&&RO base = 0x8000

b, AXD设置为semihosting, Target为Armulate

c, 代码:

#include <stdio.h>

extern void strcopy(char *d, const char *s);

int Main()
{

const char* srcStr = "First string--sources";
char dstStr[] = "Second string - destination";

printf(" %s\n %s\n", srcStr, dstStr);

/*
strcopy(dstStr, srcStr);

printf("After copying: \n");
printf(" %s\n %s\n", srcStr, dstStr);
*/
return 0;
}




关键词: 何在     面的     console     看到     print     输出    

菜鸟
2006-11-25 20:18:00     打赏
2楼

问题找到了: 把Main改成main就可以了.

但是Main和main有什么区别呢? 请教.


共2条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]