?? useproto.c
字號:
#include <stdio.h>
int i_cube(int);
float f_cube(float);
void main(void)
{
printf("The cube of 3 is %d\n", i_cube(3));
printf("The cube of 3.7 is %f\n", f_cube(3.7));
}
int i_cube(int value)
{
return(value * value * value);
}
float f_cube(float value)
{
return(value * value * value);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -