Initial commit

This commit is contained in:
github-classroom[bot] 2025-03-24 23:14:50 +00:00 committed by GitHub
commit 9d2733d705
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
63 changed files with 7330 additions and 0 deletions

17
list_main_driver.c Normal file
View file

@ -0,0 +1,17 @@
/*-----------------------------------------------------------------------------
* HTBLA-Leonding / Class: <your class name here>
*-----------------------------------------------------------------------------
* Exercise Number: S02
*-----------------------------------------------------------------------------
* Description:
* The assignment does not require to implement an application.
* Run 'make test' to build and execute all required unit tests.
*-----------------------------------------------------------------------------
*/
#include <stdio.h>
int main(int argc, char *argv[]) {
printf("The assignment does not require to implement an application.\n");
printf("Run 'make test' to build and execute all required unit tests.\n");
}