Categories

Web DevelopmentProgrammingDatabaseWindowsLinuxNetworkingMobile DevicesRaspberry PiPythonCJavaOtherSponsored

C Articles

How to check a number is prime or not in C

This is a C program to check if a number is prime or not

C program to convert a binary number to decimal number format

C Program to convert a binary value to its equivalent decimal format.

C program to convert decimal to hexadecimal

This is a C program to convert a decimal number to its hexadecimal equivalent. Base-10 to Base-16 conversion.

How to reverse a string in C

This is a simple C program to reverse a string without using library functions

C program for binary search

A binary search is an algorithm to search the position of an element inside a sorted array. Here is a C program implementation of binary search algorithm.

C program to find the sum of diagonal elements of an array

C program to find the sum of diagonal elements of an array. Calculates the sum of main diagonal or principal diagonal and secondary or antidiagonal elements

C program to find the largest and second-largest in an array

Here is a C Program to find the largest and second largest number in an array. Contains step-by-step explanation of the code.

C program to multiply two matrices

C programming assignment with solution: Matrix Multiplication - C program to multiply two matrices.

C program to find the transpose of a matrix

Here is C program to find the transpose of a matrix. Transpose of a matrix is obtained by interchanging the rows and columns of the matrix.