Tag: C program
C Program to Find the Roots of a Quadratic Equation
This post explains how to find the roots of a Quadratic Equation using the C programming language. Let’s get started.
C Program to convert decimal number to binary
Problem Write a program in C to convert a decimal number to binary number How to convert a decimal number to binary number in C ? Output Abundantcode.com Coding samples Enter a decimal number: 10 1010
C Program to Display Prime Numbers Between Two Intervals
This post helps us to display prime numbers between two intervals using C programming.
C Program to delete an element from an array
This post explains the deletion of an element from an array using the C programming language.
C Program to Convert Octal Number to Decimal and vice-versa
This post explains the conversion of octal number to decimal number and vice-versa using the C programming language.
C Program to Find Transpose of a Matrix
This post explains to find tanspose of a matrix using the C programming language.
C Program to Find the Sum of Natural Numbers using Recursion
This post helps us to find the sum of natural numbers using recursion using C programming.
C Program to Display Armstrong Number Between Two Intervals
This post explains how to display Armstrong number between two intervals using the C programming language.
C program to Reverse a String Using Recursion
This post helps to reverse a string using recursion by the use of C programming language.
C Program to Add Two Matrices Using Multi-dimensional Arrays
This post helps add two matrices uing multi-dimensional arrays in the C programming language.
C Program to find the size of the array
This post helps to find the size of the array using the C programming language.
C Program to search a number in an array
This post helps to search a number in an array using the C programming language.
C Program to Find Largest Element in an Array
This post helps to find largest element in an array using the C programmimg language.
C Program to Multiply Two Matrices Using Multi-dimensional Arrays
This post multiplies two matrices using multi-dimensional arrays in the C programming language.
C Program to Convert Binary Number to Decimal and vice-versa
This post explains the conversion of numbers from binary to decimal and vice versa, using the C programming language.
C Program to convert Binary Number to Decimal
Problem Write a program in C to convert a binary number to decimal number. How to convert a binary number to decimal number in C ? Output Abundantcode.com Coding samples Enter a binary number: 1101 13 in decimal
C Program to Calculate Average Using Arrays
This post shows how to calculate the average of all the values in the array using C progamming language.
C Program to display "Hello, World!"
Problem Write a program in C to display “Hello, World!” on the screen. C Program to display “Hello, World!” in Console Window. In the above example , the #include<stdio.h> is a preprocessor command that informs the compiler to include the stdio.h header file in the program. This header file includes some of the commonly used functions like scanf and printf which are used to read…
C Program to insert an element into an array
This post helps to insert an element into an array using the C programming language.
C Program to Calculate Standard Deviation
This post helps calculate the standard deviation using the C programming language.