Question: Problem 2 Download the Spanish_conjugator.c code. Modify it by doing the following: Get rid of all pointers Create a struct that will contain six strings:


Problem 2 Download the Spanish_conjugator.c code. Modify it by doing the following: Get rid of all pointers Create a struct that will contain six strings: the verb base (for instance, "habl"), yo, tu, el, nosotros, and ellos forms. Use the struct to print out the verb forms HINT: To join two strings together in C++, you can use the + operator. For instance, if str1 is "a", and str2 is "b", if str3 = str1 + str2, str3 will be "ab." HINT: Use str1.pop_back() to get rid of a character at the end of a string. In Spanish, we will always get rid of the last two letters of a verb. Please enter a normal Spanish verb ending in -ar: hablar You entered: hablar First conjugation: hablo Second conjugation: hablas Third conjugation: habla Fourth conjugation: hablamos Fifth conjugation: hablan#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
