通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
有以下程序:
#include <stdio.h> struct link { int data; struct link *next; }; main() { struct link *h,a,b; h=&a; a.data=10; a.next = &b; b.data = 20; }
程序运行时不能输出10,20的语句是()。