C Program to Find Max and Min Using Pointers
Previous Next The program receives an array of numbers as input and finds the minimum number and a maximum number using pointers. This program is… Read More »C Program to Find Max and Min Using Pointers
Previous Next The program receives an array of numbers as input and finds the minimum number and a maximum number using pointers. This program is… Read More »C Program to Find Max and Min Using Pointers
This program copy text from one string to another string character-by-character with the help of string copy function. C programming language does have a builtin… Read More »C Program To Write A String Copy Function
The C program to process marks of student and display grade checks for multiple conditions on the input marks and then decides the grade of… Read More »C Program To Process Marks Of Student And Display Grade
The program to compute factorial calls a function recursively to compute the output.The recursion is the ability of a computing procedure to call itself repeatedly… Read More »C Program To Compute Nth Factorial Using Recursion
XML is not a programming language because it does not create applications, and uses a text editor.XML is not a database that store the data.… Read More »XML Basics
This program receives an input number from user and check if the number is prime number or not.The number is divided by 2, 3 and… Read More »C Program To Check If A Number Is Prime Or Not
Previous Next In this article, you will learn to write a C program that implement two search algorithms – Linear Search and Binary Search Algorithm… Read More »C Program To Implement Linear Search and Binary Search Algorithm
Previous Next This program is an implementation of Bubble sort algorithm. The program receives unsorted input numbers and sorts the number in ascending or descending… Read More »C Program to Implement Bubble Sort Algorithm
The C program for matrix manipulation performs basic matrix operations upon receiving the values for two matrices from the user. The program does addition, subtraction,… Read More »C Program To Manipulate Matrices
A modulo operator in c returns the remainder of a division, not a quotient. This program finds remainder without using the modulo (mod) operator. We… Read More »C Program To Find Reminder without Modulo Operation