Example & Tutorial understanding programming in easy ways.

What is the difference between the Array and the structure?

Basically,


Array is the collection of similar data type. like Array of integer , array of char etc.


-But structure is the collection of different data type, we can store multiple data type in one structure.

like student record i.e., id ,name , age etc.

Read More →