⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 goodprog.c

📁 汇编经典教程profession_assembly_language(Richard Blum著) 的code
💻 C
字号:
/* goodprog.c - An example of passing input values in the proper order */#include <stdio.h>double testfunc(double, int);int main(){        double data1 = 3.14159;        int data2 = 10;        double result;        result = testfunc(data1, data2);        printf("The proper result is %f\n", result);        return 0;}

⌨️ 快捷键说明

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