How to Bypass Cyberoam by using Wayback Machine to Access Blocked Sites on Wi-Fi [100% Working]

Does your college/school/office have blocked sites on wi-fi? Are you not able to get access? Then probably you are at the right place. The same has happened with me. In my college sites are blocked by using a firewall known as Cyberoam. By doing a lot of search I came to a solution. Here we …

How to Bypass Cyberoam by using Wayback Machine to Access Blocked Sites on Wi-Fi [100% Working] Read More »

Singly Linked List in C

Here you will learn about singly linked list in C. What is Singly Linked List (SLL)? The simplest kind of linked list is a singly liked list (SLL) which has one link per node. It has two parts, one part contains data and other contains address of next node. The structure of a node in a SLL …

Singly Linked List in C Read More »

Bluehost Review

BlueHost is comparably any old company which was established way back in the year 1996 and it is been 15 years since it’s been imparting the service. Its enriching past is a live testimony of the exemplary service which it imparts. It is important to let everyone know about the BlueHost web hosting features in …

Bluehost Review Read More »

C++ program to swap two numbers using class

#include<iostream.h> #include<conio.h> class swap { int a,b; public: void getdata(); void swapv(); void display(); }; void swap::getdata() { cout<<“Enter two numbers:”; cin>>a>>b; } void swap::swapv() { a=a+b; b=a-b; a=a-b; } void swap::display() { cout<<“a=”<<a<<“tb=”<<b; } main() { clrscr(); swap s; s.getdata(); cout<<“nBefore swap:n”; s.display(); s.swapv(); cout<<“nnAfter swap:n”; s.display(); getch(); return 0; }

Program to Reverse Number in Java

Here you will learn how to reverse number in java with a program example. For example given number is 1478 then its reverse will be 8741. Program to Reverse Number in Java package com; import java.util.Scanner; class Reverse { public static void main(String…s) { int n,rev=0,i; Scanner sc = new Scanner(System.in); System.out.println(“Enter any number: “); …

Program to Reverse Number in Java Read More »

Program for Factorial in Java

Here you will get program for factorial in java. We can find factorial of any number by multiplying it with all the numbers below it. For example, factorial of 4 is 4*3*2*1 = 24. Program for Factorial in Java package com; import java.util.Scanner; class Factorial { public static void main(String…s) { int n,fac=1,i; Scanner sc …

Program for Factorial in Java Read More »