摘要:
1、数组名 int vector[10]; //vector是一个指针,是一个指向数组首元素的指针。即指向整形的指针。 int matrix[3][10]; //matrix是一个指针,是一个指向(有10个整形元素的)数组的指针。 指向数组的指针的声明方式: int (*p)[10] = matri 阅读全文
摘要:
function <cstdio> sscanf int sscanf ( const char * s, const char * format, ...); Read formatted data from string Reads data from s and stores them acc 阅读全文