Looking at the code below, pick what best describes its purp…
Looking at the code below, pick what best describes its purpose regarding the variable x. char myArray[30] = { 0 };int i = 0;int x = 0;gets(myArray);while(myArray[i] != ‘\0’){ if(myArray[i] >= ‘a’ && myArray[i]
Read Details