applying sizeof( ) to determine an array's size : Array Two Dimension « Data Type « C / ANSI-C






applying sizeof( ) to determine an array's size

  
#include <stdio.h>

#define iDAYS_OF_WEEK 7

int main( )
{
 int arr[iDAYS_OF_WEEK]={1,2,3,4,5,6,7};

 printf(" %d ",(int)sizeof(arr));

 return(0);
}
  
    
  








Related examples in the same category

1.Two-Dimensional arrays
2.Getting the values in a two-dimensional array
3.Multi-dimensional arrays and pointersMulti-dimensional arrays and pointers
4.Two dimensional int array
5.A simple student grades database
6.A very simple text editor
7.A simple Tic Tac Toe gameA simple Tic Tac Toe game
8.For loop: two dimensional array
9.Find element inside a two dimensional array
10.Store value into two dimensional char array and output it
11.English to German Translator
12.Two dimensional char array and for loop
13.the use of a two-dimensional array