Question 6 What is the output? const int MAX_LEN = 10; char userStr [MAX_LEN] = "PASS123"; int i; for (i = 0; userStr[i]
Posted: Fri Jul 01, 2022 5:46 am
Question 6 What is the output? const int MAX_LEN = 10; char userStr [MAX_LEN] = "PASS123"; int i; for (i = 0; userStr != '\0'; ++i) {} userStr = tolower(userStr); } O pass123 O Pass123 PASS123 O Error: The string contains a digit that cannot be converted to lowercase