Category: Tech
-
How to convert a String to an Array ?
At times, we need to convert a string in to an array in order to use it in our program so how do we do that. Below I have a JAVA program that will help you to convert any String to an Array. First we declare a variable of String data-type. Then we…
-

Periodic Table C Program.
Hey, I am happy to upload my first program on the internet. This program is written in C language. It is a program to find Atomic numbers of certain elements. Read the ‘Readme’ file to know how I made this program. Download the source code and the text file here:- For the execution of this…
-

Time Difference Calculator C Program.
Using Call by reference I have made a C program to calculate time difference between start time and end time. First we declare three integers in a structure ‘sec, min, hrs’ to store the timings in hours:minutes:seconds format. Then we declare a function Difference to which we are going to…