pswd.profile.amd.bat
来自「代码优化,有效使用内存,透视优化技术,对比优化方法,如果你在追求代码效率的最大化」· Batch 代码 · 共 18 行
BAT
18 行
@ECHO OFF
cl.exe /c /Zi pswd.c
IF NOT EXIST pswd.obj GOTO err_compil
link.exe /DEBUG pswd.obj
IF NOT EXIST pswd.exe GOTO err_link
GOTO end
:err_compil
ECHO -ERR: Compiling error!
goto end
:err_link
ECHO -ERR: Linking error!
goto end
:end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?