Hello! I am currently learning how to place code in different files but for whatever reason it says that speak () is not defined in my main. Any suggestions as to why this is happening?
orig.cpp
1 2 3 4 5 6 7 8 9
#include <iostream>
#include "cat.h"
int main ()
{
speak ();
return 0;
}