<u>C++ program to print the digit without a comma </u>
#include<iostream>
#include<string>
using namespace std;
void commaremoval(string num) /*Defining function commaremoval with parameter num of string type*/
{
string s=num;
for(int i=0; i< s.length();i++)
{
if(s[i]!=',')
/*Checking whether the string doesn't contain ' ,' */
cout<<s[i]; //Printing Output without comma
}
}
//driver function
int main()
{
string num;
cout<<"Enter a digit between 1,000 and 999,999:"<<endl;
/*taking input from user*/
cin>>num;
commaremoval(num);
//calling function
return 0;
}
<u>Output</u>
Enter a digit between 1,000 and 999,999: 22,343
22343
Answer:
quick access toolbar, page layout, status bar
Explanation:
Nothing. If you SELECT data from a database, and add an ORDER BY clause, it just affects the ordering of the data that is returned to the user, but the data in the database remains unaltered.
On the CPU first and then then the power button if there is password access then u have to type the password
this Much only
hope it helps :)
B is correct...
Please vote my answer brainliest. thanks!