Is this is the write solution?

#include<bits/stdc++.h>
using namespace std;

int count(int n) {
if(n<4)
return 1;
return count(n-1) + count(n-4);

}

int main() {

int c = 5;

cout<<count(c);

}

Yes. this is the right way. If your doubt is resolved mark it as resolved.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.