Trim trailing white space characters from given string
C program to trim trailing white space characters from given string.
Program
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<stdlib.h>
#define MAX 50
void main()
{
char str[MAX];
int i, pos;
printf("Enter the string\t:");
gets(str);
printf("\nOriginal String\t:'%s'",str);
pos = -1;
i = 0;
while(str[i] != '\0')
{
if(str[i]!=' ' && str[i]!='\t')
{
pos = i;
}
i++;
}
str[pos + 1] = '\0';
printf("\nModified string\t:'%s'",str);
getch();
}
Output
Enter the string :welcome to coursecrux.com
Original String :'welcome to coursecrux.com '
Modified string :'welcome to coursecrux.com'