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)
c. 7
Computer Science & Information Technology
You might also like to view...
null can be used:
(a) to indicate a variable has no real value (b) in a Boolean expression with == (c) as a placeholder (d) all of the above
Computer Science & Information Technology
Preconfigured, predetermined attack patterns are called signatures. _________________________
Answer the following statement true (T) or false (F)
Computer Science & Information Technology