Learn + Share..
Sunday, 2 August 2015
Proxy Server for Asynchronous communication using Multithreading In C
›
This is the third and last article in the series of socket programming in Linux using C. Find my previous two articles below for basics:...
Sunday, 19 July 2015
Simple Proxy Server in C using Multi-threading
›
This articles covers a simple proxy server application for multiple clients in C. It is based on Linux based socket programming. If ...
5 comments:
Friday, 10 July 2015
Echo Server Using TCP and UDP protocol in C
›
This article contains programs illustrating echo server application in C using socket programming. This echo server prints the messages r...
Thursday, 10 July 2014
Problem Statement: Given two numbers, where each digit is represented as a node of a linked list, add those numbers
›
/*Given two numbers, where each digit is represented as a node of a linked list, add those numbers*/ #include<stdio.h> #inclu...
Problem Statment: Given a binary tree, find if there exists a root to leaf path of distance k.
›
/*Level : Easy question */ #include <stdio.h> #include <stdlib.h> /* A binary tree node has data, pointer to left ch...
Saturday, 8 February 2014
Problem statement: Reverse a list in single traversal in C
›
#include<stdio.h> struct node { int data; struct node *link; }; void addNode(int data,struct node **rt) { ...
Problem statement: Find a mid of list in single traversal in C
›
#include<stdio.h> struct node { int data; struct node *link; }; struct node *root; void addNode(int val) ...
›
Home
View web version