Handling Data Using Arrays
Learn the disadvantages of handling data using arrays with the help of an interactive example.
Storing data using multiple arrays
The program given below shows how the following data can be stored using multiple arrays.
Press the RUN button and see the output!
Press + to interact
# include <stdio.h>int main( ){// Create char array to store name of employeeschar names[ ] = { 'A', 'X', 'Y', 'Z', '\0' } ;// Create int array to store age of employeesint ages[ ] = { 23, 27, 28, 22 } ;// Create float array to store salary of employeesfloat salaries[ ] = { 4000.50, 5000.00, 6000.75, 5600.55 } ;int i ;// Traverse arrays and print its elements to the consolefor ( i = 0 ; i <= 3 ; i++ )printf ( "%c %d %f\n", names[ i ], ages[ i ], salaries[ i ] ) ;}
...