What is a C program’s structure?
What is a C program’s structure? a) Preprocessor directives, functions, and variables b) Only functions and variables c) Only main function d) None of the above Answer: a) Preprocessor directives, functions, and variables Explanation: A typical C program consists of several components: preprocessor directives (such as #include), global variables, functions, and the main() function. The […]
What is a C program’s structure? Read More »