Podcast
Questions and Answers
The main Function Begins execution of every C program Parentheses after main indicate that main is a function C programs consist of ______, one of which must be main Precede every function by a comment stating its purpose Functions can return information The keyword int to the left of main indicates that main “returns” an integer (whole number) value – for now simply mimic this
The main Function Begins execution of every C program Parentheses after main indicate that main is a function C programs consist of ______, one of which must be main Precede every function by a comment stating its purpose Functions can return information The keyword int to the left of main indicates that main “returns” an integer (whole number) value – for now simply mimic this
functions
The keyword int to the left of main indicates that main “returns” an ______ (whole number) value – for now simply mimic this
The keyword int to the left of main indicates that main “returns” an ______ (whole number) value – for now simply mimic this
integer
C programs consist of ______, one of which must be main Precede every function by a comment stating its purpose Functions can return information The keyword int to the left of main indicates that main “returns” an integer (whole number) value – for now simply mimic this
C programs consist of ______, one of which must be main Precede every function by a comment stating its purpose Functions can return information The keyword int to the left of main indicates that main “returns” an integer (whole number) value – for now simply mimic this
functions