Java program to add two numbers and print result

Write a Java program to input two numbers add two numbers. In this example we will learn to use arithmetic operator to find sum of two numbers. We will learn to input two number from user and find sum of two numbers in Java.

Example
Input

First number: 10
Second number: 5

Output

Sum of 10 and 5 is : 15

Read more

Basic input using Scanner class in Java

Write a java program to perform basic input using Scanner class. In this article I will explain how to input all basic data types using Scanner class in Java. We will learn how to use java.util.Scanner class to input data from user.

Example
Input

Enter charater value: c
Enter integer value: 10

Output

You entered charater : c
You entered integer: 10

Read more

C program to search an element in Circular Linked List

Write a C program to create a Circular Linked List of n nodes and search an element in Circular Linked List. How to search an element by key in Circular Linked List.

In my previous posts, I have explained how to perform search on singly linked list. In this example I will explain you how to perform search operation on Circular Linked List.

Read more