11 lines
171 B
C
11 lines
171 B
C
#include <stdio.h>
|
|
int main() {
|
|
|
|
char line[SIZE];
|
|
memset(line,0,SIZE);
|
|
char* r = fgets(line,SIZE,stdin);
|
|
if (r == NULL){
|
|
|
|
}
|
|
return 0;
|
|
} |