This repository contains various programming solutions in the C programming language .... Below are various C programs and the solutions of them can be find in my GitHub account...please search for the solutions by maintaining the question number.
-
Write a C program to find out the sum of the following series: S = 1!/1 + 2!/2 + 3!/3 + 4!/4 + … + n!/n
-
Write a C program to check whether a given number is ABUNDANT or not. An abundant number is a special type of number for which the sum of its proper divisors is greater than the number itself. Make use of user-defined functions as and when necessary.
-
Write a program in C to determine if a given matrix (2-D array) is a SPARSE MATRIX or not. A Sparse Matrix is a matrix in which the number of zero elements is always greater than the number of non-zero elements.
-
Write a C program to check whether a given integer (to be taken from the user) is a PALINDROME or not. Make use of user-defined function as and when necessary.
-
Given three points (x1,y1), (x2,y2) and (x3,y3) respectively, write a C program to check if all the three points fall on one straight line or not.
-
Write a C program to check whether a given number is Odd or Even.