summaryrefslogtreecommitdiffstats
path: root/03_exercise/cli/client.c
blob: 48bf724af06bbcca80c55591ddc607ba8279534f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <stdlib.h>

#define PORT 9000
#define HOST "127.0.0.1"

int main()
{
	getc(stdin);
	printf("Client Exit\n");
	
	return 0;
}