Headlines
Loading...
Recently Updated
C Program to compute the sin series

C Program to compute the sin series

C Program to compute the sin series
#include<stdio .h=""> #include<conio .h="…
C Program to find gcd of two numbers

C Program to find gcd of two numbers

C Program to find gcd of two numbers
#include<stdio .h=""> #include<conio .h="…
C Program to Condense a number

C Program to Condense a number

C Program to Condense a number 
#include<stdio .h=""> #include<conio .h="&quo…
C Program to convert decimal number to binary number

C Program to convert decimal number to binary number

C Program to convert decimal number to binary number 
# include<stdio .h=""> # includ…
C Program to compute the series

C Program to compute the series

C Program to compute the series
#include<stdio .h=""> #include<conio .h="&quo…
C Program to find the exponential value

C Program to find the exponential value

C Program to find the exponential value
#include<stdio .h=""> #include<conio .h=&q…
C Program to enter temp in centigrade n convert it to fahrenheit

C Program to enter temp in centigrade n convert it to fahrenheit

C Program to enter temp in centigrade n convert it to fahrenheit
#include<stdio .h=""&g…
C Program to calculate the average of 3 numbers

C Program to calculate the average of 3 numbers

C Program to calculate the average of 3 numbers 
# include<stdio .h=""> # include<…
C Program to enter the sale value and printout the commission value

C Program to enter the sale value and printout the commission value

C Program to enter the sale value and printout the commission value
#include<stdio .h=""…
C Program to enter meter reading,calculate the cost and print it out

C Program to enter meter reading,calculate the cost and print it out

C Program to enter meter reading,calculate the cost and print out how much is charged
#include<std…
C Program that intializes the loop to produce a table of value (N  10*N  100*N  1000*N)

C Program that intializes the loop to produce a table of value (N 10*N 100*N 1000*N)

C Program that intializes the loop to produce a table of value
#include<stdio .h=""> …
C Program to find largest and smallest value from three numbers

C Program to find largest and smallest value from three numbers

#include<stdio.h>#include<conio.h>void main(){int a,b,c;clrscr();printf("\nEnter t…
C Program to print prime numbers between n1 and n2 where n1 and n2 are user inputs

C Program to print prime numbers between n1 and n2 where n1 and n2 are user inputs

C Program to print prime numbers between n1 and n2 where n1 and n2 are user inputs
#include<stdio…
C Program to print factorial of numbers from 1 to 15

C Program to print factorial of numbers from 1 to 15

C Program to print factorial of numbers from 1 to 15
#include<stdio .h=""> #include&l…
C Program to function for a calculator

C Program to function for a calculator

Program to function for a calculator#include<stdio.h>#include<conio.h>void main(){int c…
C Program to print Floyd’s triangle

C Program to print Floyd’s triangle

#include<stdio.h>#include<conio.h>void main(){int i,j,k=1,n;clrscr();printf("\nEnt…
C Program to print a triangle

C Program to print a triangle

#include<stdio.h>#include<conio.h>void main(){int i,j,r;clrscr();printf("\nEnter t…
C Program to swap value of 2 integers without using a temporary variable

C Program to swap value of 2 integers without using a temporary variable

# include<stdio.h># include<conio.h>void main(){int num1,num2,temp;clrscr();printf(&quo…
C Program to swap value of 2 integers using a temporary variable

C Program to swap value of 2 integers using a temporary variable

# include<stdio.h># include<conio.h>void main(){int num1,num2,temp;clrscr();printf(&quo…
C Program to find the sum of digits of a number

C Program to find the sum of digits of a number

C Program to find the sum of digits of a number 
# include<stdio .h=""> # include<…
C Program to find Square root of a number

C Program to find Square root of a number

C Program to find Square root of a number 
#include<stdio .h=""> #include<conio .h…
C Program to display following pattern of *

C Program to display following pattern of *

C Program to display following pattern
#include<stdio .h=""> #include<conio .h=&qu…
C Program to print odd numbers upto 50

C Program to print odd numbers upto 50

C Program to print odd numbers upto 50
#include<stdio .h=""> #include<conio .h=&qu…
C Program to enter a number n and print its multiplication table

C Program to enter a number n and print its multiplication table

C Program to enter a number n and print its multiplication table from 1 to m  
#include<stdio .h=&…
C Program to enter a list of numbers, print the number until number is greater than 15

C Program to enter a list of numbers, print the number until number is greater than 15

C Program to enter a list of numbers, print the number until number is greater than 15 
#include<…
C Program to print fibonicci series

C Program to print fibonicci series

C Program to print fibonicci series
#include<stdio .h=""> #include<conio .h="…
C Program to print average of even numbers below a range

C Program to print average of even numbers below a range

C Program to print average of even numbers below a range
#include<stdio .h=""> #inclu…
C Program to convert binary no in to decimal no

C Program to convert binary no in to decimal no

C Program to convert binary number to decimal number
#include<stdio .h=""> #include&l…
C Program to print the asterisk graph

C Program to print the asterisk graph

C Program to print the asterisk graph 
#include<stdio .h=""> #include<conio .h=&qu…
C Program to enter list of number and print the number of asterisks until number entered is 0

C Program to enter list of number and print the number of asterisks until number entered is 0

C Program to enter list of number and print the number of asterisks until number entered is 0
#inclu…
C Program to check whether the number is Armstrong no or not

C Program to check whether the number is Armstrong no or not

C Program to check whether the number is Armstrong no or not
#include<stdio .h=""> #i…
C Program using function to compute the Fibonacci series recursively

C Program using function to compute the Fibonacci series recursively

#include #include unsigned fibo(unsigned num) { if(num==0) return 0; else if(num==1) return…
C Program using function to find the GCD of 2 nos recursively

C Program using function to find the GCD of 2 nos recursively

Write a function to find the GCD of 2 nos recursively. Also write the main() function to use it.
#inc…
C program which inputs n and r and computes nCr ie nCr = n! / r! (n-r)!

C program which inputs n and r and computes nCr ie nCr = n! / r! (n-r)!

Write a program which inputs n and r and computes nCr by calling the function which returns the fact…
C Program to obtain the trace of a given square matrix of order m x m

C Program to obtain the trace of a given square matrix of order m x m

Write a function to obtain the trace of a given square matrix of order m x m. (Trace of a matrix i…
C program to find the arithmetic mean of n numbers

C program to find the arithmetic mean of n numbers

Write a function to find the arithmetic mean of n numbers. (pass an arrayto a function).Function pr…
C program to find if a given number is a strong number

C program to find if a given number is a strong number

Write a c program to find if a given number is a strong number. ( If the sum of the factorials of a…
C program to read a matrix (m x n) column-wise, then transpose the matrix

C program to read a matrix (m x n) column-wise, then transpose the matrix

#include<stdio.h>#include<conio.h>void main() {int a[3][3],b[3][3],i,j;clrscr();printf(…
C Program for Calculating grades of “N” students from 3 tests

C Program for Calculating grades of “N” students from 3 tests

Calculating grades of “N” students from 3 tests. Sample data: No of students : 3 Enter 3 scores for s…
C program to print the sum of diagonal elements in a matrix

C program to print the sum of diagonal elements in a matrix

write a c program to print the sum of diagonal elements in a matrix.
#include<stdio .h="&quo…
C program to find the product of 2 matrices

C program to find the product of 2 matrices

Write a c program to find the product of 2 matrices.*/#include<stdio.h>#include<conio.h>…
c program to add two m x n matrices and store the results in a third matrix

c program to add two m x n matrices and store the results in a third matrix

c program to add two m x n matrices and store the results in a third matrix. #include<stdio.h> #…
C Program to Print Fibonacci series using arrays.

C Program to Print Fibonacci series using arrays.

Print Fibonacci series using arrays.*/#include<stdio.h>#include<stdlib.h>void main(){ i…
C program to shift an element by one location to the left in an array of n elements

C program to shift an element by one location to the left in an array of n elements

Write a C program to shift an element by one location to the left in an array of n elements.#includ…
Write a program to merge 2 arrays into a single sorted array

Write a program to merge 2 arrays into a single sorted array

Given are two one-dimensional arrays A and B which are sorted in ascending
order. Write a program t…
Given are two linear arrays of integers write a program print the values of only those integers that appear in both the arrays

Given are two linear arrays of integers write a program print the values of only those integers that appear in both the arrays

15. Given are two linear arrays of integers, one containing 20 elements and the
other containing 15 …
*** PLEASE checkout the Best deals from for top sites like Amazon, Flipkart etc ***