SKyeye + uCLinux -hello
我的hello 程序在skyeye + uclinux 上运行了。然后写了下面hello.c的程序。
main()
{
int a,b;
printf("input two number");
scanf("%d,%d",&a,&b);
printf("%d",a+b);
return 0;
}
这时程序不能运行,主要是scanf 语句。怎么解决? compile your program staticlly by add -static in your compilation.
页:
[1]