I want to write an array in a .txt file but I can not find a way to do it. My code writes the matrix but in a linear way.
#include <stdio.h>
int main(){
int arreglo[3][3] = {{'1','2','3'},{'4','5','6'},{'7','8','9'}};
int largo = 3;
FIL...
asked by
10.11.2018 / 22:51