Simple C Program for Find Array Size
Definition
An array is a collection of data that holds homogeneous values. That means values should be in same type
Array Syntax
type variable_name[size]
Sizeof Syntax
sizeof(data_type)
Simple C Program for Find Array Size
/*## Simple C Program for Find Array Size */
/*## Simple Array Programs,Find Array Size C Programming, sizeof Example*/
#include <stdio.h>
int main() {
// Declare Array Variable
int array[5]= { 1, 2, 3, 4, 5 };
//Read Day Value
int size;
size = sizeof(array)/sizeof(int);
//Print size of Array
printf("The Size of Array is %d", size);
return 0;
}
Sample Output:
The Size of Array is 5
C Array Programs
- Single Dimensional Array Example Program in C Programming
- Sum of Array C Example Program
- Read Array and Print Array C Example Program
- Find Largest or Biggest Number In Array C Example Program
- Simple Sorting In Array C Example Program
- Simple Sorting Descending Order In Array C Example Program
- Simple Searching In Array C Example Program
- Simple C Program for Find Array Size
- Matrix Addition 2 D (dimensional) Array Example Example Program
- Matrix Subtraction 2 D (dimensional) Array Example Example Program
- Matrix Multiplication 2 D (dimensional) Array Example Example Program
Read More Articles
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C
- C Introduction
- C Operators
- Storage Classes In C
- C Pointers
- File Management
- C Identifiers
- Loop Control Statements
- Hello World - Simple C Program
- C Array
- Single Character Output Function : putchar()
- C Reserve Words
- C Specific Properties and Implementation
- If else Statement Example Program In C Programming Language
- If Statement Example Program In C Programming Language
- Confusing Array in C ( Array Representation and Initialization )