PROGRAMMING POND
Let's Learn programming in the easiest way
Pages
(Move to ...)
Home
CAMPONY LINK
JAVA
PRACTICE
THEORY
PROGRAM
ARRAY
FUNCTION
▼
Showing posts with label
Array
.
Show all posts
Showing posts with label
Array
.
Show all posts
Monday, 2 July 2018
C Array Types
›
In C programming array can be divided into two types : 1. Single dimensional array / Simple array / 1-D array / Linear array 2. Multid...
Sunday, 1 July 2018
Array in C
›
An array is collection of homogenous element ( of same types ) consist a common property and share a common name . An array is also know...
1 comment:
Friday, 22 June 2018
Program to find maximum of 5 element of an array in C using for loop statement
›
/* program of maximum */ # include <stdio.h> void main () { int a[5],i,max=0 ; clrscr () ; for ( i=0 ; i<5 ; i++ ) { print...
Thursday, 21 June 2018
How to write program to find average of an array of 5 elements
›
/* Avg of an array */ # include <stdio.h> void main () { int a[5],i,avg ; int sum = 0 ; clrscr () ; for ( i=o ; i<5 ; i++ )...
›
Home
View web version