Write a C program to implement stack data structure with push and pop operation. In this post I will explain stack implementation using array in C language.
Continue reading Stack implementation using array, push, pop and display in C
Write a C program to implement stack data structure with push and pop operation. In this post I will explain stack implementation using array in C language.
Continue reading Stack implementation using array, push, pop and display in C
Write a C program declare, initialize and access array of structure. In this post, I will explain how to declare, initialize and access array of structure in C programming. We will learn different ways of initializing structure array and accessing its.
Continue reading How to declare, initialize and access array of structure
Write a Java program to find power of any number using Math.pow()
. In this article, we will learn about Math.pow()
function. And see how to find power of any number in Java.
Continue reading Java program to find power of any number using Math.pow()
Write a C program to declare, initialize and access structures. In this post I will explain how to declare, initialize and access structures in C language. Different ways to initialize a structure variable and how to access structure members.
Continue reading How to declare, initialize and access structures in C language
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.
Continue reading C program to search an element in Circular Linked List
Write a Java program to input days from user and find total years, weeks and days. How to convert days to years weeks and days in Java programming.
Continue reading Java program to convert days to years weeks and days
Write a Java program to input temperature in Fahrenheit from user and convert to Celsius. How to convert Fahrenheit to Celsius in Java programming.
In the previous post, I explained to convert temperature from Celsius to Fahrenheit. In this post, we learn how to convert Fahrenheit to Celsius in Java.
Continue reading Java program to convert Fahrenheit to Celsius
Write a Java program to input Celsius from user and convert temperature from Celsius to Fahrenheit. How to convert Celsius to Fahrenheit in Java.
In this on going Java programming examples, we will continue to enhance basic Java programming skills. In this post we will learn to convert given temperature from Celsius to Fahrenheit in Java.
Continue reading Java program to convert Celsius to Fahrenheit
Write a Java program to input centimeter and convert to inch, meter and kilometer. How to convert centimeter to inch, meter and kilometer in Java programming.
Continue reading Java program to convert centimeter to inch, meter and kilometer
Write a Java program to input radius of circle and find diameter, circumference and area of circle. Logic to find diameter circumference and area of circle.
Continue reading Java program to find diameter, circumference and area of circle