I would like to modify my array (multiplying by 2 each of its elements) using pointers, but I do not know why my code is not working ...
#include<stdio.h>
void changematrix(int **mm,int row, int column)
{
int i,j;
for( i = 0;i &...
asked by
18.04.2017 / 06:21