Posts

Showing posts from December, 2017

Client-Server Chat Appication

Image
Java Program to make a Client-Server Chat Interface In today's post, i had shared a java program to make a continuous chat interface between the Server and the Client. Note:- To run this program efficiently compile the server code first and the compile the client code.

C++ program with multiple catch

Image
CPP program to demonstrate Multiple Catch As we know, in exception handling we use the mechanism of try-catch block. In try block the statements are written which can generate the exceptions an to handle those exceptions catch block is written. But in this post there are multiple catch block to handle different kind of exceptions in the program.

Find Days and Months

Image
C program to find the number of days and months on the basis of given input In this post, I shared a C program to find the total number of months and the remaining days on the basis of the given input from the user.

C program for simple Arithmetic Operation

Image
C program to find the Addition, Subtraction, Division, Multiplication and Modulo of two numbers. In this post, I shared a code to find the simple arithmetic operation results for the given two numbers.