#include using namespace std; int getValue (int); int main() { int x = 5; cout << getValue (getValue (x)) <<
Posted: Sun May 15, 2022 1:39 pm
#include <iostream> using namespace std; int getValue (int); int main() { int x = 5; cout << getValue (getValue (x)) << endl; return 0; 1 int getValue (int num) { return num + 5; }