Which line in the following program contains the prototype 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 }
+1
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which line in the following program contains the prototype showDub function? 1 #include 2 using namespace std; 3 void showDub (int); 4 int ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » Which line in the following program contains the prototype 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;