verificareaVarstei returns void. That is, it returns nothing at all. But on line 69, you try to feed that non-existent output to cout.
datePersonale returns void. That is, it returns nothing at all. But on line 68, you try to feed that non-existent output to cout.
afiseaza_ma returns void. That is, it returns nothing at all. But on line 73, you try to feed that non-existent output to cout.
Last edited on
so i can fix it by typing:
int verificareaVarstei()
int datePersonale()
int afiseaza_ma()
?