unixc.cpp
来自「VC中使用汇编程序模块的例子」· C++ 代码 · 共 17 行
CPP
17 行
#include<stdio.h>
extern "C" int save(long * s);
extern "C" int resume(long * s);
void main(){
long sp;
printf("Both the code in the if and the code in the else will be exe!!!\n");
if(save(&sp)){
printf("return form the if\n");
return;
}else{
printf("return form the else\n");
resume(&sp);
}
return;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?