+ 1
Trouble with arg
I'm trying to create a program to get a person's full name, age, and gender. I have to use the function prototype -> void printPerson(Person arg); I'm having trouble printing the info out. I can enter in my info but it crashes when it goes to the print. Can someone explain? https://code.sololearn.com/cw6mZLrB2FRV
1 Antwort
+ 6
you were passing an array of structure variable to a function which is expecting one object.
I have altered it to pass the first element of the array(the element in which you are actually storing stuff). You can change is according to your choice.
Here is the fix 👇
https://code.sololearn.com/cszkz8WocYTm/?ref=app