C语言 extern 关键字详解及应用场景
extern 关键字
void echangerLignesM(matrice *m, const int i, const int j);
//作用:将矩阵 m 写入标准输出
extern void ecrireMatrice(const matrice m);
//作用:从名为 f 的文件初始化矩阵 m
extern void lireMatrice(matrice *m, const char *f);
//作用:返回矩阵 m 的行数
extern int getNbLignes(const matrice m);
//作用:返回矩阵 m 的列数
extern int getNbCols(const matrice m);
原文地址: https://www.cveoy.top/t/topic/oSxU 著作权归作者所有。请勿转载和采集!