以下程序段的输出结果是()。 struct node {int a; float b; char c[10];} printf(“%d”,sizeof(struet node)) ;
填空题以下程序段的输出结果是()。 int a=l,b=2,*p=&a,*q=&b; p=q;*p=3; printf(“%d”,b);
填空题以下程序段的输出结果是()。 char s[]= “\\140\140abc\t”; prntf(“%d\n”,strlen(s));