Personnaliser

OK
Rakuten - Achat et vente en ligne de produits neufs et d'occasionRakuten group
ClubR
Euro

Mettre en vente

Rakuten - Achat et vente en ligne de produits neufs et d'occasionRakuten group

Practical System Programming with C - Palakollu, Sri Manikanta

Note : 0

0 avis
  • Soyez le premier à donner un avis

Vous en avez un à vendre ?

Vendez-le-vôtre
Filtrer par :
Neuf (2)
Occasion (1)
Reconditionné

24,89 €

Produit Neuf

  • Livraison : 0,00 €
  • Livré entre le 4 et le 7 août
Voir les modes de livraison

ORIG1

PRO Vendeur favori

4,5/5 sur 218 ventes

Livre de poche,Expédition depuis la Chine; Livraison sous 8-12 jours

Nos autres offres

  • 68,24 €

    Occasion · Comme Neuf

    Ou 17,06 € /mois

    • Livraison : 25,00 €
    Voir les modes de livraison
    • Protection acheteurs :
    • 0,00 €
    4,6/5 sur + de 1 000 ventes
    Service client à l'écoute et une politique de retour sans tracas - Livraison des USA en 3 a 4 semaines (2 mois si circonstances exceptionnelles) - La plupart de nos titres sont en anglais, sauf indication contraire. N'hésitez pas à nous envoyer un e-... Voir plus
  • 83,32 €

    Produit Neuf

    Ou 20,83 € /mois

    • Livraison : 25,00 €
    • Livré entre le 8 et le 13 août
    Voir les modes de livraison
    4,8/5 sur + de 1 000 ventes

    Apres acceptation de la commande, le delai moyen d'expedition depuis le Japon est de 48 heures. Le delai moyen de livraison est de 3 a 4 semaines. En cas de circonstances exceptionnelles, les delais peuvent s'etendre jusqu'à 2 mois.

Publicité
 
Vous avez choisi le retrait chez le vendeur à
  • Payez directement sur Rakuten (CB, PayPal, 4xCB...)
  • Récupérez le produit directement chez le vendeur
  • Rakuten vous rembourse en cas de problème

Gratuit et sans engagement

Félicitations !

Nous sommes heureux de vous compter parmi nos membres du Club Rakuten !

En savoir plus

Retour

Horaires

      Note :


      Avis sur Practical System Programming With C Format Broché  - Livre Informatique

      Note : 0 0 avis sur Practical System Programming With C Format Broché  - Livre Informatique

      Les avis publiés font l'objet d'un contrôle automatisé de Rakuten.


      Présentation Practical System Programming With C Format Broché

       - Livre Informatique

      Livre Informatique - Palakollu, Sri Manikanta - 01/10/2020 - Broché - Langue : Anglais

      Auteur(s) : Palakollu, Sri ManikantaEditeur : ApressLangue : AnglaisParution : 01/10/2020Format : Moyen, de 350g à 1kgNombre de pages : 292Expédition : 554Dimensions : 25.4 x 17.8 x 1.6 ...

    • Auteur(s) : Palakollu, Sri Manikanta
    • Editeur : Apress
    • Langue : Anglais
    • Parution : 01/10/2020
    • Format : Moyen, de 350g à 1kg
    • Nombre de pages : 292
    • Expédition : 554
    • Dimensions : 25.4 x 17.8 x 1.6
    • Résumé :
      This book teaches system programming with the latest versions of C through a set of practical examples and problems. It covers the development of a handful of programs, implementing efficient coding examples.


      Practical System Programming with C contains three main parts: getting your hands dirty with multithreaded C programming; practical system programming using concepts such as processes, signals, and inter-process communication; and advanced socket-based programming which consists of developing a network application for reliable communication.


      You will be introduced to a marvelous ecosystem of system programming with C, from handling basic system utility commands to communicating through socket programming. With the help of socket programming you will be able to build client-server applications in no time.


      The secret sauce of this book is its curated list of topics and solutions, which fit together through a set of different pragmatic examples; each topic is covered from scratch in an easy-to-learn way. On that journey, you'll focus on practical implementations and an outline of best practices and potential pitfalls. The book also includes a bonus chapter with a list of advanced topics and directions to grow your skills.


      What You Will Learn

      Program with operating systems using the latest version of C
      Work with Linux
      Carry out multithreading with C
      Examine the POSIX standardsWork with files, directories, processes, and signals
      Explore IPC and how to work with it


      Who This Book Is For


      Programmers who have an exposure to C programming and want to learn system programming. This book will help them to learn about core concepts of operating systems with the help of C programming.

      .



      Biographie:

      Sri Manikanta Palakollu is a programmer and software developer with experience in C, C++, Java, and Python as well as Linux, POSIX, and other operating system-level programming. He is a tech reviewer for various tech book publishers. Sri also contributes to various open source projects.

      Sommaire:

      1. Introduction to Linux Environment
      ? Getting familiar with Linux Kernel
      ? Linux Kernel V/S Other OS Kernels.
      ? File Handling Utilities
      ? Process Utilities
      ? Network Utilities
      ? Backup Utilities.
      2. Implementation of Multithreading with C
      ? Introduction to Threads
      ? Threads V/S process
      ? Introduction to Multithreading.
      ? Importance of Multithreading.
      ? Support of Multithreading in C
      ? Creation of threads.
      ? Practical Examples of Multithreading.
      ? Use cases of Multithreading.
      3. Getting Started with System Programming
      ? Understanding the POSIX Standard.
      ? Introduction to API's
      ? Importance of API's
      ? Inbuilt API's in C
      4. Files and Directories
      ? Basic concepts in files
      ? Files meta i-nodes
      ? System Calls for Files
      ? I/O Operations for Files
      ? File Permissions.
      ? Soft and Hard Links
      ? System call for Directories.
      5. Processes and Signals
      ? Introduction to process Environment
      ? Environment Variables
      ? Kernel Support for Processes
      ? Process Creation
      ? Concept of the Zombie process
      ? Concept of Orphan Process
      ? System Calls for Process management
      ? Introduction to Signals
      ? System calls for signals
      ? Types of Signals
      6. Inter process Communication (IPC)
      ? Introduction to IPC
      ? Types of IPC
      ? Creation of Named PIPES
      ? Creation of UN-Named PIPES
      ? Concept of Message Queues
      ? Implementation of Message Queues
      ? Concept of Semaphore
      ? Implementation of Semaphore.
      ? API for Named and unnamed PIPES
      ? API for Message Queues
      ? API for Semaphore.
      7. Shared Memory
      ? Introduction to Shared Memory.
      ? Kernel Support for Shared Memory.
      ? Implementation of Shared Memory.
      ? API for Shared Memory.
      8. Socket Programming
      ? Introduction to Sockets
      ? IPC Over Networks
      ? API for Socket Programming
      ? OSI Layer Protocol
      ? TCP/IP Protocol
      ? Client Server Architecture.
      ? System calls for Socket Programming.
      ? Implementation of Single Client Server Architecture.
      ? Implementation of Multiple Client Server Architecture.
      9. Advanced Topics and Directions.

      Détails de conformité du produit

      Consulter les détails de conformité de ce produit (

      Personne responsable dans l'UE

      )
      Neuf et occasion
      Le choixNeuf et occasion
      5% remboursés
      Minimum5% remboursés
      Satisfait ou remboursé
      La sécuritéSatisfait ou remboursé
      À votre écoute
      Le service clientsÀ votre écoute
      LinkedinFacebookTwitterInstagramYoutubePinterestTiktok
      visavisa
      mastercardmastercard
      klarnaklarna
      paypalpaypal
      floafloa
      americanexpressamericanexpress
      RakutenLogos.svg
      • Rakuten Kobo
      • Rakuten TV
      • Rakuten Viber
      • Rakuten Viki
      • Plus de services
      • À propos de Rakuten
      Rakuten.com