About 3,560,000 results
Open links in new tab
  1. Socket Programming in C - GeeksforGeeks

    Apr 23, 2025 · Socket programming is a way of connecting two nodes on a network to communicate with each other. One socket(node) listens on a particular port at an IP, while the …

  2. TCP is used for services with a large data capacity, and a persistent connection UDP is more commonly used for quick lookups, and single use query-reply actions. ... NOTE: socket call …

  3. In this Lab you will be introduced to socket programming at a very elementary level. Specifically, we will focus on TCP socket connections which are a fundamental part of socket programming …

  4. Networking and Socket Programming Tutorial in C - CodeProject

    May 1, 2013 · Networking and Socket programming tutorial in C. This article is for programmers with the following requirements: Before you start learning socket programming, make sure you …

    Missing:

    • Intro

    Must include:

  5. What is a Socket? Where does Socket fit in the Network Stack? When does write() block? Questions? Thank you!

  6. Introduction to Sockets Programming in C - Surfside Media

    Socket programming is a fundamental concept for building networked applications in C. Sockets provide a communication interface between computers over a network, enabling data …

  7. A Beginners Guide to Socket Programming in C

    Apr 28, 2021 · What is socket programming? Socket programming is a way of connecting two nodes on a network to communicate with each other. One socket (node) listens on a particular …

    Missing:

    • Intro

    Must include:

  8. SOCKET CREATION •mysocket1:socket descriptor (sockid) –integer •AF_INET: corresponds to IPv4 protocol as communication domain •SOCK_STREAM:TCP socket type •0:TCP network …

    Missing:

    • Intro

    Must include:

  9. Socket Programming in C: Building Networked Applications from …

    4 days ago · Socket programming in C provides functions like htons() (host-to-network short) and ntohs() (network-to-host short) to handle these conversions. Socket Types and …

    Missing:

    • Intro

    Must include:

  10. Applications need to be able to specify Internet address and Port number. How? socket () returns the descriptor of the new socket if no error occurs and -1 otherwise. bind() returns 0 if no error …

    Missing:

    • Intro

    Must include: