What does no viable over loaded "=" in c++ mean it can complile cant any one help😄 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does no viable over loaded "=" in c++ mean it can complile cant any one help😄

https://code.sololearn.com/cDf9bKdAH4ub/?ref=app

12th Dec 2022, 2:08 PM
♥Heart ♥Hacker♥
♥Heart ♥Hacker♥ - avatar
3 Answers
+ 1
Your new_acct() function returns nothing (void), but on lines 83 and 87, you are assigning the results of the function call to a variable of type `string`
12th Dec 2022, 5:02 PM
XXX
XXX - avatar
0
So bro what shall I do I cancelled the string and it doesn't work
12th Dec 2022, 5:41 PM
♥Heart ♥Hacker♥
♥Heart ♥Hacker♥ - avatar
0
Okay, so I didn't really look into your code before. But it seems that there are a lot more problems in there. You have set the type of all `num_accts` parameters as `string`. The name and the way you've used the parameters suggests that you probably wanted an integer type instead. As for line 83, 87 etc., you either need to take a reference as the `num_accts` in your new_acct() function or you need to return the new 'number of accounts' and assign it to `num_accts`. Just asking, but have you written this code yourself? It seems weird that you've written quite a lot but have made a very basic mistake of having string instead of an integer. It seems to me that you're following the cis3110 (cis15) course. I couldn't find a lot of it online, but I did find this https://www.studocu.com/en-us/document/brooklyn-college/advanced-programming-techniques/cis15-ch00-bank-accounts/1276129 which seems to me is what you're trying to do. I would suggest you follow the prototype given in the exercise and not your own
12th Dec 2022, 8:09 PM
XXX
XXX - avatar