You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
228 B
19 lines
228 B
4 months ago
|
#include <stdio.h>
|
||
|
|
||
|
void file1(void);
|
||
|
void file2(void);
|
||
|
void file3(void);
|
||
|
void file4(void);
|
||
|
void file5(void);
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
file1();
|
||
|
file2();
|
||
|
file3();
|
||
|
file4();
|
||
|
file5();
|
||
|
printf("All Functions Executed\n");
|
||
|
return 0;
|
||
|
}
|