C programs C Program to compute the sin series Share C Program to compute the sin series #include<stdio .h=""> #include<conio .h="… Read More
C programs C Program to find gcd of two numbers Share C Program to find gcd of two numbers #include<stdio .h=""> #include<conio .h="… Read More
C programs C Program to Condense a number Share C Program to Condense a number #include<stdio .h=""> #include<conio .h="&quo… Read More
C programs C Program to convert decimal number to binary number Share C Program to convert decimal number to binary number # include<stdio .h=""> # includ… Read More
C programs C Program to compute the series Share C Program to compute the series #include<stdio .h=""> #include<conio .h="&quo… Read More
C programs C Program to find the exponential value Share C Program to find the exponential value #include<stdio .h=""> #include<conio .h=&q… Read More
C programs C Program to enter temp in centigrade n convert it to fahrenheit Share C Program to enter temp in centigrade n convert it to fahrenheit #include<stdio .h=""&g… Read More
C programs C Program to calculate the average of 3 numbers Share C Program to calculate the average of 3 numbers # include<stdio .h=""> # include<… Read More
C programs C Program to enter the sale value and printout the commission value Share C Program to enter the sale value and printout the commission value #include<stdio .h=""… Read More
C programs C Program to enter meter reading,calculate the cost and print it out Share C Program to enter meter reading,calculate the cost and print out how much is charged #include<std… Read More
C programs C Program that intializes the loop to produce a table of value (N 10*N 100*N 1000*N) Share C Program that intializes the loop to produce a table of value #include<stdio .h=""> … Read More
C programs C Program to find largest and smallest value from three numbers Share #include<stdio.h>#include<conio.h>void main(){int a,b,c;clrscr();printf("\nEnter t… Read More
C programs C Program to print prime numbers between n1 and n2 where n1 and n2 are user inputs Share C Program to print prime numbers between n1 and n2 where n1 and n2 are user inputs #include<stdio… Read More
C programs C Program to print factorial of numbers from 1 to 15 Share C Program to print factorial of numbers from 1 to 15 #include<stdio .h=""> #include&l… Read More
C programs C Program to function for a calculator Share Program to function for a calculator#include<stdio.h>#include<conio.h>void main(){int c… Read More
C programs C Program to print Floyd’s triangle Share #include<stdio.h>#include<conio.h>void main(){int i,j,k=1,n;clrscr();printf("\nEnt… Read More
C programs C Program to print a triangle Share #include<stdio.h>#include<conio.h>void main(){int i,j,r;clrscr();printf("\nEnter t… Read More
C programs C Program to swap value of 2 integers without using a temporary variable Share # include<stdio.h># include<conio.h>void main(){int num1,num2,temp;clrscr();printf(&quo… Read More
C programs C Program to swap value of 2 integers using a temporary variable Share # include<stdio.h># include<conio.h>void main(){int num1,num2,temp;clrscr();printf(&quo… Read More
C programs C Program to find the sum of digits of a number Share C Program to find the sum of digits of a number # include<stdio .h=""> # include<… Read More
C programs C Program to find Square root of a number Share C Program to find Square root of a number #include<stdio .h=""> #include<conio .h… Read More
C programs C Program to display following pattern of * Share C Program to display following pattern #include<stdio .h=""> #include<conio .h=&qu… Read More
C programs C Program to print odd numbers upto 50 Share C Program to print odd numbers upto 50 #include<stdio .h=""> #include<conio .h=&qu… Read More
C programs C Program to enter a number n and print its multiplication table Share C Program to enter a number n and print its multiplication table from 1 to m #include<stdio .h=&… Read More
C programs C Program to enter a list of numbers, print the number until number is greater than 15 Share C Program to enter a list of numbers, print the number until number is greater than 15 #include<… Read More
C programs C Program to print fibonicci series Share C Program to print fibonicci series #include<stdio .h=""> #include<conio .h="… Read More
C programs C Program to print average of even numbers below a range Share C Program to print average of even numbers below a range #include<stdio .h=""> #inclu… Read More
C programs C Program to convert binary no in to decimal no Share C Program to convert binary number to decimal number #include<stdio .h=""> #include&l… Read More
C programs C Program to print the asterisk graph Share C Program to print the asterisk graph #include<stdio .h=""> #include<conio .h=&qu… Read More
C programs C Program to enter list of number and print the number of asterisks until number entered is 0 Share C Program to enter list of number and print the number of asterisks until number entered is 0 #inclu… Read More
C programs C Program to check whether the number is Armstrong no or not Share C Program to check whether the number is Armstrong no or not #include<stdio .h=""> #i… Read More
C programs C Program using function to compute the Fibonacci series recursively Share #include #include unsigned fibo(unsigned num) { if(num==0) return 0; else if(num==1) return… Read More
C programs C Program using function to find the GCD of 2 nos recursively Share Write a function to find the GCD of 2 nos recursively. Also write the main() function to use it. #inc… Read More
C programs C program which inputs n and r and computes nCr ie nCr = n! / r! (n-r)! Share Write a program which inputs n and r and computes nCr by calling the function which returns the fact… Read More
C programs C Program to obtain the trace of a given square matrix of order m x m Share Write a function to obtain the trace of a given square matrix of order m x m. (Trace of a matrix i… Read More
C programs C program to find the arithmetic mean of n numbers Share Write a function to find the arithmetic mean of n numbers. (pass an arrayto a function).Function pr… Read More
C programs C program to find if a given number is a strong number Share Write a c program to find if a given number is a strong number. ( If the sum of the factorials of a… Read More
C programs C program to read a matrix (m x n) column-wise, then transpose the matrix Share #include<stdio.h>#include<conio.h>void main() {int a[3][3],b[3][3],i,j;clrscr();printf(… Read More
C programs C Program for Calculating grades of “N” students from 3 tests Share Calculating grades of “N” students from 3 tests. Sample data: No of students : 3 Enter 3 scores for s… Read More
C programs C program to print the sum of diagonal elements in a matrix Share write a c program to print the sum of diagonal elements in a matrix. #include<stdio .h="&quo… Read More
C programs C program to find the product of 2 matrices Share Write a c program to find the product of 2 matrices.*/#include<stdio.h>#include<conio.h>… Read More
C programs c program to add two m x n matrices and store the results in a third matrix Share c program to add two m x n matrices and store the results in a third matrix. #include<stdio.h> #… Read More
C programs C Program to Print Fibonacci series using arrays. Share Print Fibonacci series using arrays.*/#include<stdio.h>#include<stdlib.h>void main(){ i… Read More
C programs C program to shift an element by one location to the left in an array of n elements Share Write a C program to shift an element by one location to the left in an array of n elements.#includ… Read More
Write a program to merge 2 arrays into a single sorted array Share Given are two one-dimensional arrays A and B which are sorted in ascending order. Write a program t… Read More
Given are two linear arrays of integers write a program print the values of only those integers that appear in both the arrays Share 15. Given are two linear arrays of integers, one containing 20 elements and theother containing 15 … Read More