printf("\n How much you tickets you want to bet(Rs20 per ticket): ");
scanf("%i",&bet);
int x=0;
for (x=0;x<bet;x++)
{
printf("\n Enter the 6 numbers ( 1 - 40): ");
// int num/*concatenate x */[100]
for( i=0;i<6;i++)
scanf("%d",&num/*concatenate x */[i]); // Storing the values inserted into array num
}
Suppose i got this code, i want to create an array for each player to insert their numbers,i want to name the array as num1, num2,num3....
how do i concatenate the value to the array name ?