Working
This commit is contained in:
parent
0c66ff89b3
commit
9b8308eb4a
11 changed files with 121 additions and 0 deletions
13
src/app.c
Normal file
13
src/app.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include "lib1.h" // Header for Library 1 (static library)
|
||||
#include "lib2.h" // Header for Library 2 (static library)
|
||||
#include "lib3.h" // Header for Library 3 (header-only library)
|
||||
#include <stdio.h> // Standard I/O functions like printf
|
||||
|
||||
int main() {
|
||||
printf("Hello from main application!\n");
|
||||
// Call functions from the linked libraries
|
||||
lib1_function();
|
||||
lib2_function();
|
||||
lib3_function();
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue