or more blanks by a single blank
#include
#include
void main()
{
char c;
clrscr();
printf("
Enter a line of text:- ");
printf("
String will be terminated if you press ENTER.");
printf("
Press Ctrl-Z & then ENTER to end the task.");
printf("
STRING:-
");
c=getchar();
printf("
Justified form:- ");
while (c!=EOF)
{
if (c==' ')
putchar(c);
while (c==' ')
{
c=getchar();
}
putchar(c);
c=getchar();
}
getch();
}