sample_3_1.c

来自「This source code has been tested under O」· C语言 代码 · 共 33 行

C
33
字号
/*********************************************************************************                                                                            ****  Sample_3_1.c                                                              ****                                                                            ****  A sample application for Figure 3.1.                                      ****                                                                            *********************************************************************************/#include <stdio.h>#include <Xm/Label.h>Widget	theShell,	label;void	main( argc, argv )	int	argc;	char	*argv[];{	theShell = XtInitialize(argv[0], "Sample_3_1", NULL, NULL, &argc, argv);	label = XmCreateLabel( theShell, "TestLabel", NULL, 0 );	XtManageChild( label );	XtRealizeWidget( theShell );	XtMainLoop();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?