?? ex1203c.cpp
字號:
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
void sub1(char *num)
{
printf("%s\n",num);
}
void sub2(float r, float i)
{
printf("%5.2f, %5.2f\n",r, i);
}
typedef struct _person
{
int age;
float weight, height;
} person;
void sub3(person p)
{
printf("age:%d weight:%5.2f height:%5.2f\n",
p.age, p.weight, p.height);
}
#ifdef __cplusplus
}
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -