I will probably try the struct method once I have time since it seems neat.
In the meantime, I had actually blundered through with the following, which works:
Code:
#include <stdio.h>
#include <stdlib.h>
int values[2][6] = {
{4, 1, 10, 9, 2, 5 },
{1, 2, 3, 4, 5, 6}
};
int values_comp[2][6] = {
{4, 1, 10,
Leave a comment: