Please go through the code below,
I want to create a dynamic 2 dimensional int array, to be created at run time.


#include <stdio.h>
#include <stdlib.h>

void point(int **a,int row,int col)...