C++ Programming

  1. Write a program to print Hello, World on the standard output.
  2.  Write a program that uses the multiplication operator, *, to print the product.
  3. Program to use
    a separate statement to print each operand.
  4. Write a program that uses a while to sum the numbers from 50 to 100.
  5. write a while that prints the numbers from ten down to zero.
  6. Write a program that prompts the user for two integers. Print each number in the range specified by those two integers.
  7. What are the differences between int, long, long long, and short?
  8. To calculate a mortgage payment, what types would you use for the rate, principal, and payment? Explain why you selected each type.
  9. Determine the type of each of the following literals. Explain the differences among the literals in each of the four examples:
  10. What, if any, are the differences between the following definitions: int month = 9, day = 7; int month = 09, day = 07;
  11. What values do these literals represent? What type does each have? (a) “Who goes with F\145rgus?\012” (b) 3.14e1L (c) 1024f (d) 3.14L
  12. Using escape sequences, write a program to print 2M followed by a newline. Modify the program to print 2, then a tab, then an M, followed by a newline.
  13. Explain the following definitions. For those that are illegal, explain what’s wrong and how to correct it.
    (a) std::cin >> int input_value;
    (b) int i = { 3.14 };
    (c) double salary = wage = 9999.99;
    (d) int i = 3.14;
  14. Write a program to calculate the highest two numbers in an array with length n, and print these numbers with their indexes.
  15. Write a C++ program to change every letter in a given string with the letter following it in the alphabet (i.e. a becomes b, p becomes q, z becomes a).
  16. Write a C++ program to find the largest word in a given string.
  17. Write a C++ program to count all the characters, blank spaces and words in a given string.
  18. Write a C++ program to find a word in a given string that has the highest number repeated letters.

Write a C++ program to remove all special characters from a given string.

Method 1

#include <iostream>
#include <string>
#include <cctype>

using namespace std;

string removeAllSpecialCharacters(const string& str)
{
string output;
for (char ch : str) {
// Check if character is alphanumeric or whitespace
if (isalnum(ch) || isspace(ch)) 
{ 
// Keep alphanumeric characters and spaces
output += ch;
}
}
return output;
}

int main() {
string input;
cout << "Enter any sentence: ";
getline(cin, input);

string newString = removeAllSpecialCharacters(input);
cout << "New sentence after removing of special characters: "<< newString <<endl;

return 0;
}

Output

Enter any sentence: This is a sentence with @special character #$
New sentence after removing of special characters: This is a sentence with special character
  • The  function [isalnum] checks if a character is alphanumeric. 
  • The  function [isspace] checks if a character is a whitespace character.
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments