C program and problem solution
Pages
(Move to ...)
Home
Array
Function
Puzzle
Overview
▼
Write a C program to add a series of odd numbers i.e. 1+3+5+7+……..+n
›
This program will give you an idea of adding a series having only odd numbers. Let a series 1+3+5+7+……..25. Now Define the first odd numb...
Write a C program to calculate a series of integer numbers as 1+2+3+......+n
›
Here 1+2+3+…….+n is a simple series where each number can be added using a single loop. At first take a variable SUM and ...
Algorithm of Insertion sort and a program of insertion sort in C
›
Insertion sort: It is simple to sort a set of integer number or character set using insertion algorithm. Let you have unsorted array...
A program for function: Search, Insert, Show, Push, Pop || Array and Stack using Function call
›
Use this program to run certain function with array and stack. Function: search, insert, show, push and pop. Use a menu to make...
Program of Searching and inserting a item in a linear array - using function
›
#include <stdio.h> #include <stdlib.h> int SEARCH( int LA[100], int N); int INSERT( int LA[100], int N)...
›
Home
View web version