Tabrizian / C-Final-Project-Networking

C Introduction to programming final project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

good

Introduction

Networking phase of Final Project of C Introduction to programming course.

C Socket Programming in MinGW

For using MinGW in order to socket programming you can use almost all of BSD socket functions in your program and at the end you must add thses lines of code in order to load winsock dll.

	WSADATA wsaData;
	WSAStartup(MAKEWORD(2, 2), &wsaData);

and use following command for compiling.

gcc main.c  -lws2_32

About

C Introduction to programming final project


Languages

Language:C 84.5%Language:CMake 15.5%