if i want to select a particular no. like if from 1-100 randomly i want to select 1 no. . Is there any way .pleae help in sending the coding i am not from computer background. i'll be thankful to you in advance
- (int)randomNumber
{
int arr[100];
return arr[rand()%100];
}