listing_4_6.c

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

C
28
字号
/*************************************************************************                                                                    ****  listing_4_6.c                                                     ****                                                                    ****  This program is a generic template, containing the layout of a    ****  normal Motif program.                                             ****                                                                    *************************************************************************/#include <Xm/Xm.h>			/* Standard Motif definitions */Widget	appshell;			/* Application Shell	      */void main( argc, argv )    int     argc;    char    *argv[];{    appshell = XtInitialize( argv[0], "Listing_4_6", NULL, 0, &argc, argv );    /*** Creation/Management of instance tree goes here ***/    XtRealizeWidget( appshell );    XtMainLoop();}

⌨️ 快捷键说明

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