Hi, I am in the process of creating a Scrabble game. I am a beginner with C. I made a code that generates a certain amount of specific letters and store it in array: Code: #include #include #include #include char RandA[100]; int count[27]={9,2,2,4,12,2,3,2,9,1,1,4,2,6,8,2,1,6,4,6,4,2,2,1,2,1,2}; char alpha[27]={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P', 'Q', 'R','S','T','U','V', 'W', 'X','Y','Z',' '}; int total=98; void TileGenerate() { char ran; ...