├── LAB 03 ├── client server (UDP) │ ├── client │ ├── client.c │ ├── server │ └── server.c └── server to client (UDP) │ ├── a.out │ ├── client.c │ └── server.c ├── LAB 04 ├── lower to upper case UDP │ ├── a.out │ ├── client.c │ └── server.c ├── maximum element in array (UDP) │ ├── a.out │ ├── client.c │ └── server.c ├── passing an array from client to server (UDP) │ ├── a.out │ ├── client.c │ └── server.c ├── reversing of word (UDP) │ ├── a.out │ ├── client.c │ └── server.c └── sort the array and print it on client side (UDP) │ ├── a.out │ ├── client.c │ └── server.c ├── LAB 05 ├── Client to server (TCP) │ ├── a.out │ ├── client.c │ └── server.c ├── Pallindrome or not │ ├── a.out │ ├── client.c │ └── server.c ├── Sum of a array │ ├── a.out │ ├── client.c │ └── server.c ├── counting number of vowels │ ├── a.out │ ├── client.c │ └── server.c └── second least element │ ├── a.out │ ├── client.c │ └── server.c ├── LAB 07 ├── a.out ├── chandan ├── client.c ├── client1.c └── server.c ├── Lab 01 ├── QUE5.C ├── Que3.c ├── Que4.c ├── StudentQUE2.c └── swap.c ├── README.md ├── Resulantant array(TCP) Que1 ├── a.out ├── clientQUE1.c └── serverQUE1.c └── counting number of consonents(UDP) Que 2 ├── a.out ├── clientQUE2.c └── serverQUE2.c /LAB 03/client server (UDP)/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 03/client server (UDP)/client -------------------------------------------------------------------------------- /LAB 03/client server (UDP)/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 03/client server (UDP)/client.c -------------------------------------------------------------------------------- /LAB 03/client server (UDP)/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 03/client server (UDP)/server -------------------------------------------------------------------------------- /LAB 03/client server (UDP)/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 03/client server (UDP)/server.c -------------------------------------------------------------------------------- /LAB 03/server to client (UDP)/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 03/server to client (UDP)/a.out -------------------------------------------------------------------------------- /LAB 03/server to client (UDP)/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 03/server to client (UDP)/client.c -------------------------------------------------------------------------------- /LAB 03/server to client (UDP)/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 03/server to client (UDP)/server.c -------------------------------------------------------------------------------- /LAB 04/lower to upper case UDP/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/lower to upper case UDP/a.out -------------------------------------------------------------------------------- /LAB 04/lower to upper case UDP/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/lower to upper case UDP/client.c -------------------------------------------------------------------------------- /LAB 04/lower to upper case UDP/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/lower to upper case UDP/server.c -------------------------------------------------------------------------------- /LAB 04/maximum element in array (UDP)/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/maximum element in array (UDP)/a.out -------------------------------------------------------------------------------- /LAB 04/maximum element in array (UDP)/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/maximum element in array (UDP)/client.c -------------------------------------------------------------------------------- /LAB 04/maximum element in array (UDP)/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/maximum element in array (UDP)/server.c -------------------------------------------------------------------------------- /LAB 04/passing an array from client to server (UDP)/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/passing an array from client to server (UDP)/a.out -------------------------------------------------------------------------------- /LAB 04/passing an array from client to server (UDP)/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/passing an array from client to server (UDP)/client.c -------------------------------------------------------------------------------- /LAB 04/passing an array from client to server (UDP)/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/passing an array from client to server (UDP)/server.c -------------------------------------------------------------------------------- /LAB 04/reversing of word (UDP)/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/reversing of word (UDP)/a.out -------------------------------------------------------------------------------- /LAB 04/reversing of word (UDP)/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/reversing of word (UDP)/client.c -------------------------------------------------------------------------------- /LAB 04/reversing of word (UDP)/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/reversing of word (UDP)/server.c -------------------------------------------------------------------------------- /LAB 04/sort the array and print it on client side (UDP)/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/sort the array and print it on client side (UDP)/a.out -------------------------------------------------------------------------------- /LAB 04/sort the array and print it on client side (UDP)/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/sort the array and print it on client side (UDP)/client.c -------------------------------------------------------------------------------- /LAB 04/sort the array and print it on client side (UDP)/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 04/sort the array and print it on client side (UDP)/server.c -------------------------------------------------------------------------------- /LAB 05/Client to server (TCP)/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Client to server (TCP)/a.out -------------------------------------------------------------------------------- /LAB 05/Client to server (TCP)/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Client to server (TCP)/client.c -------------------------------------------------------------------------------- /LAB 05/Client to server (TCP)/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Client to server (TCP)/server.c -------------------------------------------------------------------------------- /LAB 05/Pallindrome or not/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Pallindrome or not/a.out -------------------------------------------------------------------------------- /LAB 05/Pallindrome or not/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Pallindrome or not/client.c -------------------------------------------------------------------------------- /LAB 05/Pallindrome or not/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Pallindrome or not/server.c -------------------------------------------------------------------------------- /LAB 05/Sum of a array/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Sum of a array/a.out -------------------------------------------------------------------------------- /LAB 05/Sum of a array/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Sum of a array/client.c -------------------------------------------------------------------------------- /LAB 05/Sum of a array/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/Sum of a array/server.c -------------------------------------------------------------------------------- /LAB 05/counting number of vowels/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/counting number of vowels/a.out -------------------------------------------------------------------------------- /LAB 05/counting number of vowels/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/counting number of vowels/client.c -------------------------------------------------------------------------------- /LAB 05/counting number of vowels/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/counting number of vowels/server.c -------------------------------------------------------------------------------- /LAB 05/second least element/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/second least element/a.out -------------------------------------------------------------------------------- /LAB 05/second least element/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/second least element/client.c -------------------------------------------------------------------------------- /LAB 05/second least element/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 05/second least element/server.c -------------------------------------------------------------------------------- /LAB 07/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 07/a.out -------------------------------------------------------------------------------- /LAB 07/chandan: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LAB 07/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 07/client.c -------------------------------------------------------------------------------- /LAB 07/client1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 07/client1.c -------------------------------------------------------------------------------- /LAB 07/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/LAB 07/server.c -------------------------------------------------------------------------------- /Lab 01/QUE5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/Lab 01/QUE5.C -------------------------------------------------------------------------------- /Lab 01/Que3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/Lab 01/Que3.c -------------------------------------------------------------------------------- /Lab 01/Que4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/Lab 01/Que4.c -------------------------------------------------------------------------------- /Lab 01/StudentQUE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/Lab 01/StudentQUE2.c -------------------------------------------------------------------------------- /Lab 01/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/Lab 01/swap.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/README.md -------------------------------------------------------------------------------- /Resulantant array(TCP) Que1/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/Resulantant array(TCP) Que1/a.out -------------------------------------------------------------------------------- /Resulantant array(TCP) Que1/clientQUE1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/Resulantant array(TCP) Que1/clientQUE1.c -------------------------------------------------------------------------------- /Resulantant array(TCP) Que1/serverQUE1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/Resulantant array(TCP) Que1/serverQUE1.c -------------------------------------------------------------------------------- /counting number of consonents(UDP) Que 2/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/counting number of consonents(UDP) Que 2/a.out -------------------------------------------------------------------------------- /counting number of consonents(UDP) Que 2/clientQUE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/counting number of consonents(UDP) Que 2/clientQUE2.c -------------------------------------------------------------------------------- /counting number of consonents(UDP) Que 2/serverQUE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandan5569/Computer-Network-Lab---KIIT-2020-2021-/HEAD/counting number of consonents(UDP) Que 2/serverQUE2.c --------------------------------------------------------------------------------