repeats inputs using C program

6:55 AM


#include
int main(void)
{
char ch;
while ((ch = getchar()) != '#')
putchar(ch);
return 0;
}

0 Comments