职教组卷基于海量职教高考试题库建立的在线组卷及学习系统
职教组卷
  • 题型:程序分析题 题类:单元测试 难易度:中档

    有以下程序
    # include
    include
    main( )
    { struct xyz
    { int a;
    char c;
    }d1={1,’c’};
    struct xyz d2=(5,’y’ }
    printf("%d,%c\n",d1.a,d1.c);
    printf("%d,%c\n",d2.a,d2.c);
    }
    写出程序运行后的输出结果。
  • 相关试卷