• 2021-04-14
    以下程序的输出结果是________。#include "stdio.h"#...);printf("%d",c);}
  • 36

    内容

    • 0

      以下程序运行后的输出结果是 【19】 。#include <stdio, h>main( ) char c1 ,c2; for( el =’ 0’, c2 =’9’; e1<c2; c1 + + , c2 -- ) printf(" %c%c", c1, c2 ); printf("\n" );

    • 1

      下面程序输出的结果是( )。 #include<stdio.h> main() char *a="1234"; fun( A: ; B: printf(

    • 2

      以下程序的输出结果为【1】, #include "stdio.h" main(){int a;for(a=0;a<10;a++);printf("%d",a);}

    • 3

      以下程序的输出结果是 #include “stdio.h” main() { printf(“%d\n”, NULL); } A: 1 B: 0 C: 不确定 D: -1

    • 4

      下面程序的输出结果是()。#include<stdio.h>intmain(){ints=023;printf("%d\n",--s);return0;}