Read more

Right angle triangle pattern

Problem Statement : Write a program to Print the right angle triangle Pattern Numbers with * in between them. Solution n--> N…

Divisible program

PROBLEM STATEMENT : GET THE NO OF ELEMENTS AS à n STORE THE ELEMENTS IN THE FORM OF ARRAY à a[10000] DIVISOR à d #incl…

zigzag pattern in c

Problem Statement Write a program to display the integers in zigzag pattern. Solution code #include<stdio.h> #include <…

pattern printing numbers zoho

Problem statement Write a program to print the numbers/string in pattern form Solution #include<stdio.h> #include<stdli…

Abundant number in c

Abundant number          A number is said to be abundant number if value of sum of all divisors of the given number is greater t…

Binary to decimal in c

Problem Statement Write a c program to convert the binary digits to decimal number. Solution #include<stdio.h> int main()…

Armstrong number program in c

Armstrong Number  Armstrong number is a number that is equal to the sum of cubes of its digits. Armstrong numbers are 153, 370,…

c program to check identical matrix

Problem Statement Write a c program to check whether the given two matrix is identical or not. Program Explanation   This is a …

clock c program

Problem Statement Write a c program to convert 12 hour clock time to 24 hour time . Solution #include<stdio.h> #include…

Sum of digit in c

Problem Statement Write a C program to sum of digits in an integer. Solution #include<stdio.h>      //Header File int mai…

how to Split integer into two parts in c

Problem Statement: Write a c program to accept n integers and split the integer into two equal parts and print the output. Solut…

Load More
That is All