Machine Problem
1. Summative Assessment 2
Create a C++ program which converts a given string to uppercase.
The output should be Like the following:
..
Original String:
feu institute of technology.
String in UPPERCASE:
FEU INSTITUTE OF TECHNOLOGY.
CCS0007 Computer Programming 2
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Program Listing
/*
1. Summative Assessment 2
Create a C++ program which converts a given string to uppercase.
The output should be Like the following:
..
Original String:
feu institute of technology.
String in UPPERCASE:
FEU INSTITUTE OF TECHNOLOGY.
CCS0007 Computer Programming 2
*/
#include <iostream>
#include <cstring>
#include <cctype>
using namespace std ;
int main ()
{
char arr[] = "feu institute of technology.";
cout << "Original String:\n";
cout << arr << "\n";
for (int i = 0; arr[i] != '\0'; ++i)
arr[i] = toupper(arr[i]);
cout << "String in Uppercase:\n";
cout << arr << "\n";
cout << "CCS0007 Computer Programming 2" << endl ;
return 0 ;
}
No comments:
Post a Comment