复习指针与字符串:
(1)定义一个字符串str,初值hello world:
char str[] = “hello world”;
char *str = “hello world”;
(2)修改字符串str的值为Hello World:
字符数组存的是字符,字符指针存的是字符串在内存中的首地址。
(3)定义函数funstr,参数是字符串str,函数输出字符串:格式符:%s、%c两种方法
一节课45分钟,记名算平时分。结果3班11个人做出来,4班3个人做出来。
结构的基本概念
讲解了结构的基本概念:结构的定义、结构变量的定义、初始化和引用。
最后给出一个例子:
#include <stdio.h>
int main() {
struct STD {
int num;
char name[20];
int score;
};
struct STD student1 = {25,"niu",69};
printf("%d\n",student1.num);
// printf("%s\n",student1.name);
}
结果是3班19个完成,4班8个人。
下次课课前把题目发下去做课上要写的题是课下作业的修改版~
第11次-18次大纲,减少讲解实践,增加课上的实践练习,指导错误处理。基本就是每45分钟练习至少一道题!