mainprog.c

来自「*****汇编语言程序设计 源代码*****」· C语言 代码 · 共 13 行

C
13
字号
/* mainprog.c - An example of calling an assembly function */#include <stdio.h>int main(){        printf("This is a test.\n");        asmfunc();        printf("Now for the second time.\n");        asmfunc();        printf("This completes the test.\n");        return 0;}

⌨️ 快捷键说明

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