Why Does this not work.....?
Intent: Wanted to have it so the user picks a Tables to practise and then the sum works of there choice and the array of digits. I was assuming that it would pick a random digit out of the array?
#include <stdio.h>
int main(){
int Sum [12] = {1,2,3,4,5,6,7,8,9,10,11,12};
int Choice ;
printf ("Pick Your Time's Table\n");
printf ("|2|3|4|5|6|7|8|9|10|11|12|\n");
printf ("===========================\n");
scanf ("%d",Choice);
printf ("%d x %d",Choice,Sum);
return 0;
}