In this tutorial we will discover the list of the 100 most used native functions in PHP. 51. fclose...
100 PHP Functions You Should Know – Part 1
In this tutorial we will discover the list of the 100 most used native functions in PHP. 1. count...
Check Armstrong Number of n digits in C
An Armstrong Number is a number that when you raise each digit of the number to the power of the...
ArrayList Methods with Examples in Java
ArrayList is a part of collection framework and is present in java.util package. It provides us...
Java LinkedList using Scanner with Example
Linked list program in java using scanner Doubly-linked list implementation of the List and Deque...
Convert Binary to Decimal in PHP
In this example, i’ll show you How to Convert Binary to Decimal in PHP. PHP Code: <?php //...
Convert Binary to Decimal in Java
In this example, i’ll show you How to Convert Binary to Decimal in Java. Java Code: // Java...
Find the perfect numbers between 1 and 10000 in C++
Write a program in C++ to find the perfect numbers between 1 and 10000. #include <iostream>...
C++ Program to Find Perfect Number
Here we will learn how to program using C++ in order to find the perfect number. A Perfect Number...
Print Half Pyramid Patterns of Numbers in C++
Programs for printing pyramid patterns in C++ C++ Code: #include <iostream> using...