cmain.c
来自「这是一些例程」· C语言 代码 · 共 12 行
C
12 行
/* Power2 procedure is in C.ASM */
/* Compile with CL cmain.c c.obj */
#include <stdio.h>
extern int Power2( int factor, int power );
void main()
{
printf( "3 times 2 to the power of 5 is %d\n", Power2( 3, 5 ) );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?