// Preprocessing directives
#include <stdio.h>
// Functions prototypes
// Main function
int main(void) {
return 0;
}
// Other functions
.skeletonc
0
19
pZacca
void func1(int); void func2(void);
The preprocessing directives #include and void func1(int); void func2(void); define the scope of the functions func1 and func2 . The main function is not defined by the preprocessing directives.
0 Comments
Add Comment
Log in to add a comment