Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Convert C++ program to pep8 assembly: #include stdafx.h #include #include #include using namespace std; //function declaration char Convert_uppercase(char l) { //convert lowercase to uppercase if

Convert C++ program to pep8 assembly:

#include "stdafx.h"

#include

#include

#include

using namespace std;

//function declaration

char Convert_uppercase(char l)

{

//convert lowercase to uppercase

if ((l >= 'a') && (l <= 'z'))

{

//return the charater

return l - 'a' + 'A';

}

}

int main()

{

//declare variables

char lowercase, uppercase;

cout << "Enter Lower case character:";

//read user input character

cin >> lowercase;

//check if it is character 'z'

if (lowercase == 'z')

cout << "Converted to: " << 'A' << endl;

// check input is number or character

else if ((isalpha(lowercase)) && (lowercase != 'z'))

{

//call conversion function

uppercase = Convert_uppercase(lowercase);

//Display the upper case

cout << "Uppercase:" << uppercase << endl;

//Display next character

cout << "Incremented Character:" << static_cast(uppercase + 1) << endl;

}

else

{

//display not a character

cout << "NOT a character:" << lowercase << endl;

}

system("pause");

return 0;

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Understanding Oracle APEX 5 Application Development

Authors: Edward Sciore

2nd Edition

1484209893, 9781484209899