11 lines
190 B
C
11 lines
190 B
C
#include <stdio.h>
|
|
#include "utils1.h"
|
|
#include "utils2.h"
|
|
|
|
int main() {
|
|
printf("Main program started!\n");
|
|
print_hello_from_utils1();
|
|
print_hello_from_utils2();
|
|
return 0;
|
|
}
|