pl-sem/sem7/printf.c

12 lines
140 B
C
Raw Permalink Normal View History

2023-08-17 22:08:53 +00:00
/* printf.c */
#include <stdio.h>
int main(void) {
char buffer[1024];
fgets( buffer, 1024, stdin);
printf( buffer );
return 0;
}