以下程序段的输出结果是()。 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));
填空题以下程序运行后的输出结果是()。 main( ) {int a=1,b=3,c=5; if(c=a+b) printf(“yes”); else printf(“not”); }