smiledog8409 smiledog8409 16-08-2019 Computers and Technology contestada What is the output of the following program? #include using namespace std; int computeValue(int); int main() { int x = 2; cout << computeValue(x) << endl; return 0; } int computeValue(int num) { return num + 5; }