• 2022-06-09
    写出下面程序的运行结果。struct abc{    int a;                     float b;                     char *c; };          int main(void)           {   struct abc x = {23,98.5,"wang"};   struct abc *px = &x;    printf("%d, %s, %.1f, %s \n", x.a, x.c, (*px).b, px->c );    return 0;}