I am confused as to how i am supposed to pass the 1d array to the function, create a 2d array (multiplication table) and then send it back to the main to be output the the screen. Also, anything that is passed to or from the function must use global variables. I know i am not THAT close, but this is what i have so far. Any suggestions would be greatly appreciated.
nums[x][y];//// line 33 this in no global array hence line 22 is an error
You can make your function multiply_me return a 2d array or make it a simple parameteru
//what exactly will that 2d array contain; am not sure multiplication results or just value 1-12?
because if it will contain the results you will need a 12 by 12 array instead