I'm making a C/POSIX program that manipulates matrices written in files.
I want each matrix to be written in a different file with the following format:
- All numbers are written as byte sequence following the endiannes of the computer
- All numbers are written in the file row by row
So, for example in a little-endian computer with 32 bit int
, the following matrix:
| 100 200 |
| 300 400 |
| 500 600 |
Would be stored in a byte sequence we can represent like this (where each number represents the decimal value of the corresponding byte):
100 0 0 0 200 0 0 0 44 1 0 0 244 1 0 0 88 2 0 0
As I have to test my program, how do I create such input files?
Here's my solution to the problem: I created a program (
matrix_creator
) that receives as arguments thepath
of the output file (argv[1]
) and all numbers it needs to write in the output file (argv[2]
,argv[3]
,...).I excluded all error controls to make the code easier to read:
In such a way I can create different files using the same program for several tests.
To check what's inside the file I installed
ghex
.