构图是将()综合运用以获取电视画面的()的过程,它将决定电视观众能看到怎样的画面。
参考答案:形式因素;形式美感
以下程序中函数fun的功能是:构成一个如图所示的带头结点的单向链表,在结点的数据域中放入了具有两个字符的字符串。函数disp的功能是显示输出该单链表中所有结点中的字符串。请填空完成函数disp。
#include
typedef struct node/*链表结点结构*/
char sub[3];
struct node *next;
Node;
Node fun(char s) /*建立链表*/
……
void disp(Node *h)
Node *p;
p=h->next;
while(______)
printf("%s\n",P->sub);
p= p->next; main()
Node *hd;
hd=fun();
disp(hd);
printf("\n");