Hi! Can you pass an array of characters to a constructor? I keep trying to but it's saying that the variable is unknown.
I'm trying: class expense...
expense::expense(char[]fname);...
Make sure to watch your const correctness. Unless your constructor expects to be able to modify your argument array, you should make it const. That way you can use things like "hello" (a const char array) as argument.