C Programming Code Examples
C > Pyramid Patterns Code Examples
C Program to Print Binary Numbers Pyramid Pattern
C Program to find determinant of a matrix -
C program to read elements in a matrix and find determinant of the given matrix. The Determinant of a matrix is a special number that can be calculated from the elements of
C Coding to find Sum of Two Matrices 3x3 -
C program to read elements in two matrices and add elements of both matrices. C code for addition of two matrix. Matrix addition program in C. Logic to add two matrix in C.
The C++ Break Statement and Switch Case -
In C++ program, we have the variable i inside "Switch Braces", which means whatever the value of variable i is, the 'corresponding' case block gets executed. We have passed integer
Accessing SQL Server from C++ Language -
Forward declarations of the error handler and message handler. The Connection with "SQL" Server. Install user-supplied error functions & message-handling functions. Get DBProcess
Calculates Sum of Odd and Even Numbers -
C program code find the sum of odd and even numbers from 1 to N. Take Number N upto which we have to find the sum as input. Using for loop take the elements one by one from 1
C Coding Replace Lowercase to Uppercase -
Accepts the sentence and replaces lowercase characters by uppercase and vice-versa. Take an an English sentence as input and store it in the array "sentence[]". Copy the Last Letter's
Convert from degree Fahrenheit to Celsius -
C programming code to input temperature in degree Fahrenheit and convert it to degree Centigrade. Code convert temperature from Fahrenheit to Celsius in the C programming.
C Program Codes Finds Area of Trapezium -
C Language program to calculates the area of trapezium. The Formula used in this program are Area = (1/2) * (x + y) * h where x and y are the Two Bases of Trapezium & h is the height.