8 lines
191 B
C
8 lines
191 B
C
|
#include <test_static_library.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("Program should print \"Hello World <param-2>\" by calling static library function.\n");
|
||
|
hello(12);
|
||
|
return 0;
|
||
|
}
|