#include <iostream>
using namespace std;
int prod(int a, int b) {
return a * b;
}
int main(){
cout << prod(10, 20) << endl;
return 0;
}
Output-
200
#include <iostream> using namespace std; struct Node { int data; Node* next; }; class Stack { Node* top; public: Stac...
No comments:
Post a Comment