4381bb2a22
When the execution reaches the end of the main functions, they implicitly return a successful status.
14 lines
282 B
C
14 lines
282 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
setvbuf(stdout, 0, _IONBF, 0);
|
|
FILE *f = fopen("stdio/stdio.in", "r");
|
|
setvbuf(f, 0, _IONBF, 0);
|
|
printf("%c\n", fgetc(f));
|
|
ungetc('H', f);
|
|
char *in = malloc(30);
|
|
printf("%s\n", fgets(in, 30, f));
|
|
printf("Hello\n");
|
|
}
|