Program that will accept a stream of characters and will display the characters w/o the space

PHOTO EMBED

Wed May 08 2024 03:26:12 GMT+0000 (Coordinated Universal Time)

Saved by @kervinandy123 #c

#include <stdio.h>
#include <ctype.h>

int main()
{
    char c;
    puts("Enter a stream of characters:");
    
while((c=getchar())!='\n')
{
    if(isalpha(c))
    putchar(c);
}
    return 0;
}
content_copyCOPY