• 2022-05-31
    以下程序的输出结果是( )。#include <;stdio.h>;struct HRA{int x,y;struct HRA *p;}h[2];int main(){h[0].x=1; h[0].y=2; h[0].p=&h[1];h[1].x=3; h[1].y=4; h[1].p=h;printf(“%d,%d”, (h[0].p)->;x,(h[1].p)->;y);return 0;}
    A: 1,2
    B: 3,2
    C: 2,3
    D: 1,4
  • 举一反三