October 28, 2018

Pointer and Array in C Programming

Pointer
used to keep addresses of case or integer and to access the memory or setting the address. like any variabel constant , you must declare a pointer before using it to store any variable address.
Array
Array in C act to store related data under a single variable name with an index, also known as a subscript. It is easiest to think of an array as simply a list or ordered grouping for variables of the name type. It is a kind of data structure that can store a fixed-size sequential. 



Garvin Moses Tanuwihardjo - Binusian'22

No comments:

Post a Comment

Searching and Sorting in C Programming

Searching This is the process by which one searches the group of elements for the desired element. F or example: Binary Search In...