- 2
Help me, Error POO
3 Réponses
+ 1
You need to provide more information about what you need help with.
0
Public attributes, will be three strings: that corresponds to the name, maternal surname and surname
maternal
Methods:
âą Constructor, in this method, receives three strings to initialize the attributes name, paternal and maternal,
respectively
âą copy (): empty, in this method the name string is copied to a new string (local variable), to store
the full name, the sytrcpy () function from the string library is used. Later it is shared with the method
add ().
âą add (char *): empty, in this method it receives with a parameter step by value, a copy of the string that has
storing the name and that in this method, through the function strcat (), the paternal surname will be concatenated and
maternal leaving a space between each one, in said local variable. Later it is shared with the method
tell ()
âą count (char *) null; in this method a copy of the string that has
Stored the name and its two last names, to count the number of characters that this string has, a
local variable and the strlen () function; Finally