C Program to demonstrate Continue Statement
C Program to demonstrate Continue Statement
C Programming
C Program to demonstrate Continue Statement
Sorting in C Language Sorting is a process in which we rearrange the elements in any particular order, which can be set ready for further processing by the program logic. In C programming language, there
Binary to Decimal Conversion in C Language In this section we discuss about Binary to Decimal conversion. A Binary number should we converted as following method : Suppose we take a binary (1101)2 then we
Method to calculate Decimal to Binary Number Take a decimal input from the user for example : if user enter a decimal 12 We keep on dividing the number 12 by 2. 12 / 2
Armstrong Number It is a magical number that is equal to the sum of cubes of its digits. For example 0, 1, 153, 370, 371 and 407 are the Armstrong numbers. 153 = (1x1x1)+(5x5x5)+(3x3x3) where:
Factorial in C The Factorial is the product of all positive descending integers of n. Factorial of n is denoted by n!. For example: 4! = 4 X 3 x 2 X 1 = 24 5! = 5
Prime Number : A number that can be divided exactly only by itself and 1. such as 7, 11, 23 etc //C Program for Prime Number #include<stdio.h> #include<conio.h> void main() { clrscr(); int n, m,