C Program To Compute X ^ N

C program to compute the value of X ^ N, given X and N as inputs. Program accepts two integers x, n and computes the power of x to the n by using recursion function power().  Read more about C Programming Language . /************************************************************ You can use all the programs on www.c-program-example.com* for personal and …

C Program to compute the surface area and volume of a cube

C Program to compute the surface area and volume of a cube. Program will accept the length of the sides and calculates surface area and volume of the cube. Read more about C Programming Language . /************************************************************ You can use all the programs on www.c-program-example.com* for personal and learning purposes. For permissions to use the* …

C program: Sum Of Elements In A Matrix

Write a C program to read a matrix A (MxN) and to find the following using functions a) Sum of the elements of each row b) Sum of the elements of each column c) Find the sum of all the elements of the matrix Output the computed results with suitable headings. Read more about C …

C Program to find the Multiplication of two matrices

C Program to find the Multiplication of two matrices. C Program Develop functions a) To read a given matrix b) To output a matrix c) To compute the product of two matrices Use the above functions to read in two matrices A (MxN) B (NxM), to compute the product of the two matrices, to output …

C program to find the transpose of a given Matrix.

Write a C program to read A (MxN), find the transpose of a given matrix and output both the input matrix and the transposed matrix.Transpose of a matrix is the interchanging the rows and columns, If A is matrix of order(i*j), where i is the row and j is the column, then Transpose of A …

C Program to find Matrix addition,Subtraction and trace.

Write a C program to read two matrices A (MxN) and B(MxN) and perform addition ,subtraction of A and B, and Find the trace of the resultant matrix. Output the given matrix, their sum or Differences and the trace. Read more about C Programming Language . /************************************************************ You can use all the programs on www.c-program-example.com* …

C Program to check whether the given number is prime or not. Print the suitable messages.

C Program to check whether the given number is prime or not and Print the suitable messages. Prime number is a whole number and greater than 1, which is divisible by one or itself.Example: 2, 3, 5, 7, 11, 13………… Read more about C Programming Language . Read more Similar C ProgramsLearn C ProgrammingNumber System …

C Program to check whether a given 5 digit number is palindrome or not

C program to check whether a given 5 digit number is palindrome or not. Palindromic number is a number that remains same, when it is reversed or can be read in the same way in either direction.Example:12321, 23132… Read more about C Programming Language . Read more Similar C ProgramsLearn C ProgrammingNumber System You can …

C Program to find whether the given year is leap or not.

C Program to find whether the given year is leap or not. Leap year is a year, which is containing one extra day, i.e 366 days. In the leap year February contains the date 29. Read more about C Programming Language . Read more Similar C ProgramsLearn C ProgrammingNumber System You can easily select the …

C Program to classify the triangle as equilateral, isosceles and scalene

C Program to classify the triangle as equilateral, isosceles and scalene.Equilateral triangle means all three side and angles are equal(i.e. 60 degree).Isosceles triangle means any two side and angles are equal.Scalene triangle means , any sides and any angles are not equal. Read more about C Programming Language . Read more Similar C ProgramsLearn C …