questiontranslate following c program to pep8


Question


Translate following C++ program to Pep/8 assembly language-

#include
Using namespace std;

int myAge;

void putNext (int age) {
int nextYr;
nextYr = age + 1;
cout << "Age: " << age << endl;
cout << "Age next year: " << nextYr << endl;
}

int main ( ) {
cin >> myAge;
putNext (myAge);
putNext (64);
return 0;
}

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: questiontranslate following c program to pep8
Reference No:- TGS0444985

Expected delivery within 24 Hours