李湘
李湘楠实验7
//test4.c #include<stdio.h> int main() { char ch; int i; int count= 0 ; FILE *fp; fp = fopen("data4.txt", "r"); if(fp == NULL) { printf("fail to open ......
李湘楠实验六实验报告
test4.c#include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 char ......
李湘楠实验四实验报告
//task1_1.c #include<stdio.h> #define N 4 int main() { int a[N] = {2, 0, 2, 3}; char b[N] = {'2', '0', '2', '3'}; int i; printf("sizeof(int) = %d\n",s ......