22 lines
262 B
C
22 lines
262 B
C
|
#include<stdio.h>
|
||
|
#include<stdlib.h>
|
||
|
#include<string>
|
||
|
|
||
|
define colMAX 100
|
||
|
define rowMAX 100
|
||
|
|
||
|
int main(){
|
||
|
int i , j ;
|
||
|
FILE *file;
|
||
|
char line;
|
||
|
if((file = fopen("matrix_input.txt","r"))==NULL){
|
||
|
return 1 ;
|
||
|
}
|
||
|
fget(line,sizeof(line),file);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
return 0;
|
||
|
}
|