打造消防铁军的目标、标准、核心是什么?
参考答案:
以打得赢为目标,以战斗力为标准,以战斗精神为核心。
根据拼音写出汉字或根据汉字写出拼音。
xī xī sū sū lìn sè lán lǚ ( )( )
( ) ( ) ( ) 恣 睢
以下程序中函数fun的功能是:构成—个如图所示的带头结点的单向链表,在结点的数据域中放入了具有两个字符的字符串。函数disp的功能是显示输出该单向链表中所有结点中的字符串。请填空完成函数disp。
#include<stdio.h>
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=();}
}
main()
{ Node *hd;
hd=fun(); disp(hd);printf("\n");