Which line in the following program contains the header for the showDub function?
```
1 #include
2 using namespace std;
3 void showDub(int);
4 int main()
5 {
6 int x = 2;
7 showDub(x);
8 cout << x << endl;
9 return 0;
10 }
11 void showDub(int num)
12 {
13 cout << (num * 2) << endl;
14 }
```
a. line 3
b. line 4
c. line 7
d. line 11
d. line 11
You might also like to view...
What is conditional formatting, and how is it used?
What will be an ideal response?
The ____________________ button is used to specify additional information such as the default paper size, paper source, print resizing options, and more.
Fill in the blank(s) with the appropriate word(s).
The DAVERAGE function requires a numeric field from the table range.
Fill in the blank(s) with the appropriate word(s).
The sleep method of the Thread class requires one formal parameter that represents the number of:
(a) nanoseconds (b) microseconds (c) picoseconds (d) milliseconds