Starting out with C Early Objects solution 8th edition chapt
Starting out with C++ Early Objects solution 8th edition, chapter 8 programming challenge 11... line case 2:cc.properWords(s) is giving me a build error... build error states \"properWords\" is not a char converter. How do I fix this?
Starting out with C++ Early Objects solution 8th edition, chapter 8 programming challenge 11... line case 2:cc.properWords(s) is giving me a build error... build error states \"properWords\" is not a char converter. How do I fix this?
Solution
1. Make Sure properWords is defined Inside CharConverter Class , and inside the public decleration.
2. Check whether its called using CharConverter cc ; cc.properWords(s) , and if it doesnt belong to that class, hence the error is being reported by the compiler.
