usedl1.c

来自「This package consists of the executable 」· C语言 代码 · 共 17 行

C
17
字号
/* This shows the basic calling sequence for
 * the UnderC extension DLL
 */
#include <stdio.h>
#include "ucdl.h"

int main()
{
 char buff[128];
 int SZ = 128;
 uc_init(NULL,0);
 uc_exec("20*2.3;");
 uc_result(buff,SZ);
 printf("result was %s\n",buff);
 uc_finis();
}

⌨️ 快捷键说明

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