i'was asked to develop chat application using c++
anyone can help me finding tutorials/ articles/ walkthrough or what ever i can get that discuss this topic
zedame 0 Newbie Poster
Recommended Answers
Jump to PostI agree with clockowl.
Anyway, when you say you were asked....by who your lecturer. Something tells me you wouldn't be asked to do something like this if you hadn't already been taught most if not all the material you need to do this. I suggest you look at winsock. It …
Jump to PostHere are two examples I created and use as a reference, maybe they are of help:
/* ** Playing around with WinSockets */ #include <stdio.h> #include <winsock.h> int main (int argc, char **argv){ WORD wsaVersion; wsaVersion = MAKEWORD(2,2); WSADATA wsaData; SOCKET sock1; int wsaerr; wsaerr = WSAStartup(wsaVersion, …
All 5 Replies
Clockowl 56 Posting Whiz
Freaky_Chris 299 Master Poster
Clockowl 56 Posting Whiz
Salem commented: Looks good. +26
zedame 0 Newbie Poster
Freaky_Chris 299 Master Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.