I am making a new program in c++ i get the current error
expected primary-expression before ‘int’
about this line
p1::pascals_triangle(int depth);
|
I am making a new program in c++ i get the current error
about this line
| |||||||||
feedback
|
|
Unless you're declaring a method, you probably don't need the keyword "int".
If I were to write instead:
I'd get:
| |||||||
feedback
|
|
If that does not solve the problem you will have to give some surrounding code to make sense of your question ;) Good luck. | |||||||||
feedback
|
//this is my functions.cpp using namespace std;
// that is main | |||||||||||
feedback
|