Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is it called when a program talks with other programs or other computers

As a true beginner, one often finds that the barrier to further knowledge is not knowing what to google.

I've made programs like pong and a sudoku solver, simple things. These days I would like to work on something more like tabslock or make a multiplayer pong, or at least start thinking about what that would involve.

So what exactly is it called when programs cause other programs to do this or that, or when a program talks with a copy of itself on another computer somewhere else in this vast internet.

z.

like image 913
Ziggy Avatar asked Nov 29 '22 21:11

Ziggy


2 Answers

I expect that searching for server/client examples and socket programming in general will get you headed in the right direction.

For example, a google search for socket client server c will get you to An Introduction to Socket Programming.

A similar search for socket client server java gets you to a Lesson on Socket Communications

like image 161
Daniel LeCheminant Avatar answered Dec 10 '22 09:12

Daniel LeCheminant


Network communication, TCP/IP communication, etc.

Try googling for "socket server examples in "

like image 42
ryeguy Avatar answered Dec 10 '22 08:12

ryeguy