tadvet4955 tadvet4955 21-11-2019 Computers and Technology contestada What will the following code display? #include using namespace std; int getValue(int); int main() { int x = 2; cout << getValue(x) << endl; return 0; } int getValue(int num) { return num + 5; } a. 5 b. 2 c. 7 d. getValue(x)