Advertisement
okpalan

local-echo.c

Nov 9th, 2023
566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main(void)
  6. {
  7.     int c;
  8.     while ((c = getchar()) != EOF)
  9.         putchar(c);
  10.     return 0;
  11. }
Tags: echo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement