Suresh kumar has Published 17 Articles

Program to print number pattern in C

suresh kumar

suresh kumar

Updated on 09-Jan-2020 06:39:18

1K+ Views

Program DescriptionA numerical pattern is a sequence of numbers that have been created based on a rule called a pattern rule. Pattern rules can use one or more mathematical operations to describe the relationship between consecutive numbers in the sequence.Examples for PatternsPattern 11 2 6 3 7 10 4 8 11 13 5 9 12 14 ... Read More

Print the Non Square Numbers in C

suresh kumar

suresh kumar

Updated on 09-Jan-2020 06:36:43

5K+ Views

Program DescriptionThe square of a number is that number times itself.A square number or perfect square is an integer that is the square of an integer;The perfect squares are the squares of the whole numbers1, 4, 9, 16, 25, 36, 49, 64, 81, 100Here are the square roots of all the perfect squares from 1 to 100.√1 = ... Read More

Program to print numbers columns wise in C

suresh kumar

suresh kumar

Updated on 09-Jan-2020 06:35:52

2K+ Views

Program DescriptionPrint the natural numbers columns wise as show below1 2 6 3 7 10 4 8 11 13 5 9 12 14 15Algorithmi stands for rows and j stands for columns. 5 stands for making pattern for 5 Rows and Columns Loop for each Row (i) K is initialized ... Read More

Print multiplication table of a given number in C

suresh kumar

suresh kumar

Updated on 09-Jan-2020 06:26:23

450 Views

Program DescriptionPrint multiplication table of a given numberAlgorithmAccept any number from the User for which we need to form multiplication table.Multiply the given number starting with the value of I (=1)Multiply the given number by incrementing the value of I till the I value is lesser than or equal to ... Read More

Program to Print Mirrored Hollow Parallelogram in C

suresh kumar

suresh kumar

Updated on 09-Jan-2020 06:24:59

446 Views

Program DescriptionIt is a quadrilateral where both pairs of opposite sides are parallel.There are six important properties of parallelograms to knowOpposite sides are congruent (AB = DC).Opposite angels are congruent (D = B).Consecutive angles are supplementary (A + D = 180°).If one angle is right, then all angles are right.The ... Read More

Print the Mirror Image of Sine-Wave Pattern in C

suresh kumar

suresh kumar

Updated on 09-Jan-2020 06:18:30

179 Views

Program DescriptionA sine wave or sinusoid is a mathematical curve that describes a smooth periodic oscillation. A sine wave is a continuous wave. It is named after the function sine, of which it is the graph. It occurs often in pure and applied mathematics, as well as physics,  engineering,  signal processing and many other fields.Print the Mirror Image of Sine-Wave Pattern based on ... Read More

Program to Print the Squared Matrix in Z form in C

suresh kumar

suresh kumar

Updated on 09-Jan-2020 06:15:07

526 Views

Program DescriptionPrint the elements of the squared matrix in Z formA square matrix is a matrix with the same number of rows and columns. An n-by-n matrix is known as a square matrix of order AlgorithmTo print the elements of the Square Matrix in Z form We need to print the ... Read More

Advertisements