我已经从这个<代码>上安装了电离层成像仪。 指挥
我的方案法典
#include<stdio.h>
main()
{
int *b;
b = (int*)malloc(10*sizeof(int));
printf("b=%u
",b);
printf("b+1=%u
",(b+1));
printf("b+2=%u
",(b+2));
b[2]=4;
printf("*(b+2)=%d
",*(b+2));
}
when i try to compile this program from cc -c program.c
command
then i get some error