📄 074256_4.cpp
字号:
//074256_4.cpp
#include"074256_1.h"
//fuction free_matrix ----------------------------
//To free the memory
void free_matrix(int **p_mat,int row)
{
int i=0;
for(i=0;i<row;i++)
{
free(p_mat[i]);
p_mat[i]=NULL;
}
free(p_mat);
p_mat=NULL;
}
//fuction clean -----------------------------------
//To clean the rest of an error line in scanf
void clean()
{
for(;getchar()!='\n';)
;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -