Added test sockt file

This commit is contained in:
Austen Adler 2017-01-07 22:36:56 +00:00
parent b01a0003a6
commit ef0f98688d

12
socket.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
int main(void) {
int ch;
while((ch = getchar()) != EOF){
printf("Char: %c\n", ch);
}
printf("Done\n");
return 0;
}