Write a program that prints the first letter of your name using nested loops
int main() { string arr[10]; for (int i = 0; i < 10; i++) { cin >> arr[i]; for (int l = 0;l < 10; l++) { cout << arr[i]; } } }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment