why wont my code work? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

why wont my code work?

please fix my code here : #include <iostream> using namespace std; class Bird { //complete the class, add makeSound(<< "chirp-chirp" << endl;) method } }; int main() { //instantiation Bird bird; //function call bird.makeSound(); return 2; }

20th Jul 2023, 6:15 PM
david vandyke
david vandyke - avatar
1 Answer
+ 7
david vandyke , you need to implement the method makeSound() in the class Bird. > if you stuck with this, go back to the beginning of the current lesson and try reading and learning again. > have a look at the sample code of bankAccount on the same page, this is very similar to what you need.
20th Jul 2023, 7:35 PM
Lothar
Lothar - avatar