Showing posts with the label ArrayShow all

Two-Dimensional Array In C | Programmerdouts

Multidimensional Array. Multi-dimensional is declared as same as One-dimensional arrays, thus required separate  square brackets is require. two-dimensional require two brackets , three dimensional required three brackets and so on. Two-Dimensional Array … Read more

1-D Array In C | Programmerdouts

One-dimensional Array Declaration of 1-D Array Syntax: datatype array_name[ size ] Size : means how many elements you want to store in an array. If number of element is more than specified size ,than interpreter will throw an error. If number of elemen… Read more

Arrays in C | Programmerdouts

Array why there is a need of Array ? Till now we have worked with datatypes like int,float ,which stores only single data at a time. But, in a real life problem you will  have to face large number of data at a time. eg: to store marks of 10… Read more