又报错了 帮忙看下?
#include <stdio.h>int main (void)
{
unsigned int un= 3000000000;
short end = 200;
long big = 65537;
long long verybig = 12345678908642;
printf("un=%u and not %d\n",un,un);
printf("%hd and %d\n",end,end);
printf("%ld and not %hd\n",big,big);
printf("%lld and not %ld\n",verybig,verybig);
return 0;
}