摘要: 函数的使用原则函数的使用应该分为两个明确的阶段1.定义阶段:(定义一个函数)不会执行函数体代码 会检测语法def func(): print('from func') 2,调用阶段:会触发函数体代码的执行func() 先定义后调用:def bar(): print('from bar')def fo 阅读全文
posted @ 2019-10-04 23:58 insist钢 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1 # include <stdio.h> 2 # include <stdlib.h> 3 4 # define NUM 10 5 6 int main() 7 { 8 char *str[NUM]; /* 定义一个字符性的指针数组 */ 9 int t; 10 11 /* 为数组中的每个指针分配内存 */ 12 for (t = 0; t<NUM; t++) 13 { 14 if ((str[ 阅读全文
posted @ 2019-10-04 22:21 insist钢 阅读(337) 评论(0) 推荐(0) 编辑