Write a C++ Program to remove spaces from string entered by programmer.

Program Code:


#include<iostream>
using namespace std;

int main()
{
int i,j=0;
char name[30];
cout<<" Enter your String :  ";;
cout<<endl
cin.get(name, 30);
for(i=0; name[i]!='\0'; i++)
{
if(name[i]!=' ')
{
name[j] = name[i];
j++;
}
}
name[j]='\0';
cout<<" String after removing all spaces : ";
cout<<endl;
cout<< name;
return 0;
}


The program output is tested on www.jdoodle.com

Output:
Enter your String :  
Mukesh Rajput Suruchika
String after removing all spaces : 
MukeshRajputSuruchika



Thanks
Mukesh Rajput
Mukesh Rajput

Mukesh Rajput

I am a Computer Engineer, a small amount of the programming tips as it’s my hobby, I love to travel and meet people so little about travel, a fashion lover and love to eat food, I am investing a good time to keep the body fit so little about fitness also..

Post A Comment:

0 comments: