Hello World Image

Hello World

"Hello, World!" is a program that displays the message "Hello, World!".

Read Input Image

Read Input

Read Input is a program that reads a string from the user & displays it.

Add Numbers Image

Add 2 Numbers

This program reads 2 numbers from the user & displays it's sum.

Multiply Numbers Image

Multiply 2 Numbers

This program reads 2 numbers from the user & displays it's production.

Multiply Numbers Image

Division

This program reads 2 numbers, performs division and returns the result.

Swap Image

Swap

This program reads 2 inputs and swap their values.

Rectangle Image

Rectangle

This program reads length & width from user, and displays the area & perimeter.

Circle Image

Circle

This program reads radius from user, and displays the area & circumference.

Cube Image

Cube

This program reads edge from user, and displays the volume & surface area.

Odd or Even Image

Odd or Even

This program reads a number from user, and displays if the number is odd or even.

ASCII Image

ASCII

This program reads a character from user, and displays its ASCII value.

Vowel Image

Vowel

This program reads an alphabet from user, and displays if it is a vowel or consonant.

Largest Number Image

Largest Number

This program reads several inputs from user, and displays the largest number among them.

Sign Image

Sign

This program reads an input from user, and displays the sign of input number.

Is Digit Image

Is Digit

This program reads an input from user, and displays if it is a digit or not.

Leap Year Image

Leap Year

This program reads an input from user, and displays if it is a leap year or not.

Sum & Average Image

Sum & Average

This program reads an input from user, and displays the sum and average of numbers upto it.

Factorial Image

Factorial

This program reads an input from user, and displays it's Factorial.

Multiplication Table Image

Multiplication Table

This program reads an input from user, and displays it's Multiplication Table.

Fibonacci Image

Fibonacci

This program reads an input from user, and displays Fibonacci series.

String Length Image

String Length

This program reads an input from user, and displays it's length.

Number Length Image

Number Length

This program reads an input from user, and displays the number of digits.

Number Reverse Image

Reverse Number

This program reads an input from user, and displays the reverse of that number.

Palindrome Image

Palindrome

This program reads an input from user, and displays if it is Palindrome or not.

Power Image

Power

This program reads 2 inputs from user & displays the power.

Prime Image

Prime

This program reads an input, & displays if it is a Prime number.

Prime Range Image

Prime Range

This program reads an input, & displays Prime numbers within that range.

Quadratic Roots Image

Quadratic Roots

This program reads 3 inputs & return the roots.

GCD Image

GCD

This program read 2 inputs & return their GCD.

LCM Image

LCM

This program read 2 inputs & return their LCM.

Armstrong Image

Armstrong

This program read an input and displays if it is Armstrong.

Factor Image

Factor

This program read an input and displays it's factors.

Menu Calculator Image

Menu Calculator

This program read 2 numbers & operation & returns the result.

Decimal Binary Image

Decimal Binary

This program read a number & displays it's Binary.

Decimal Octal Image

Decimal Octal

This program read a number & displays it's Octal.

Decimal Hexadecimal Image

Decimal Hexadecimal

This program read a number & displays it's Hexadecimal.

Binary Decimal Image

Binary Decimal

This program read a Binary number & displays it's Decimal.

Octal Decimal Image

Octal Decimal

This program read a Octal number & displays it's Decimal.

Hexadecimal Decimal Image

Hexadecimal Decimal

This program reads Hexadecimal number & displays Decimal.

Binary Octal Image

Binary Octal

This program read a Binary number & displays it's Octal.

Octal Binary Image

Octal Binary

This program read a Octal number & displays it's Binary.

Octal Hexadecimal Image

Octal Hexadecimal

This program read a Octal number & displays it's Hexadecimal.

Binary Hexadecimal Image

Binary Hexadecimal

This program read a Binary number & displays it's Hexadecimal.

Binary Hexadecimal Image

Hexadecimal Binary

This program read a Hexadecimal number & displays it's Binary.

Hexadecimal Octal Image

Hexadecimal Octal

This program read a Hexadecimal number & displays it's Octal.

Pattern 1 Image

Pattern 1

This program prints a star pattern as a right triangle.

Pattern 2 Image

Pattern 2

This program prints a star pattern as an inverted right triangle.

Pattern 3 Image

Pattern 3

This program prints a star pattern as a pyramid pointing right.

Pattern 4 Image

Pattern 4

This program prints a star pattern as a right triangle.

Pattern 5 Image

Pattern 5

This program prints a star pattern as an inverted right triangle.

Pattern 6 Image

Pattern 6

This program prints a star pattern as a pyramid pointing left.

Pattern 7 Image

Pattern 7

This program prints a star pattern as a pyramid.

Pattern 8 Image

Pattern 8

This program prints a star pattern as an inverted pyramid.

Pattern 9 Image

Pattern 9

This program prints a star pattern as a rhombus.

Array DS Image

Array DS

This program depicts an array.

Queue DS Image

Queue DS

This program depicts a queue.

Stack DS Image

Stack DS

This program depicts a stack.

Selection Sort Image

Selection Sort

This program sorts an array using selection sort algorithm.

Insertion Sort Image

Insertion Sort

This program sorts an array using insertion sort algorithm.

Bubble Sort Image

Bubble Sort

This program sorts an array using bubble sort algorithm.

Top