Write a simple C program that demonstrates the structured nature of a C program by using a separate function.
Write a simple C program that demonstrates the structured nature of a C program by using a separate function.
The program uses a separate function named display()
for a specific task. The main() function calls it.
This demonstrates how a program can be divided into smaller parts.
C is a structured programming language.