A simple chatapp coded in C using shm
$ cd code
$ gcc chatserver.c -o server
$ gcc chatclient.c -o client
First start the server in a separate terminal
$ ./server
Then start the clients in different terminal windows
$ ./client
A simple chatapp coded in C using shm
Repository from Github https://github.comhamzaavvan/C-Terminal-Chat
A simple chatapp coded in C using shm
$ cd code
$ gcc chatserver.c -o server
$ gcc chatclient.c -o client
First start the server in a separate terminal
$ ./server
Then start the clients in different terminal windows
$ ./client
A simple chatapp coded in C using shm