CaptRage61
Programmer
This is the first C program that I will be writing, it is pretty simple but I can't seem to get started on it, here is what I need to do:
I need to have a user enter 2 numbers that represent the rows and colums of an array. It will then print the numbers starting from 0 at position (1,1) and goes up by 1 for each change in column number and by 10 for each row, ex:
0 1 2 3 4
10 11 12 13 14
20 21 22 23 24....
I can't figure out how to use the printf and scanf functions so the user can enter the values....anyone know how to do this?
I need to have a user enter 2 numbers that represent the rows and colums of an array. It will then print the numbers starting from 0 at position (1,1) and goes up by 1 for each change in column number and by 10 for each row, ex:
0 1 2 3 4
10 11 12 13 14
20 21 22 23 24....
I can't figure out how to use the printf and scanf functions so the user can enter the values....anyone know how to do this?