learningc/chapters/1/exercises/23.c

12 lines
210 B
C
Raw Permalink Normal View History

2019-10-21 18:45:33 +00:00
#include <stdio.h>
#include "shared/functions.h"
#include "shared/functions/uncomment.c"
int main() {
char line[MAXLINE];
while (uncomment(line,MAXLINE) != EOF) {
printf("%s", line);
}
return 0;
}