摘要:
int *p= 12;//错误char* p ="hello";// 可以 不过这样不好 没法修改等同于const char*p ="hello";int *p[] = int *(p[]); 数组,元素是指针int(*p)[] 指向 数组的指针int *p();函数,返回值为int*int*(*p)();函数指针,返回值 int* 阅读全文
摘要:
scanf函数,与printf函数一样,都被定义在stdio.h里,因此在使用scanf函数时要加上#include<stdio.h>。它是格式输入函数,即按用户指定的格式从键盘上把数据输入到指定的变量之中,其关键字最末一个字母f即为“格式”(format)之意。scanf(格式控制,地址表列) int scanf(char *format[,argument... 阅读全文
摘要:
#include "iostream"using namespace std;#define MAX 10#define LEN 50char strraw[MAX*2+1];int a[MAX][2];char str[MAX][LEN];int count = 0;int strcount = 0;int getsplitarr(FILE* fs);int getstrarr(FILE* fs... 阅读全文