18-simple-singly-linked-list/list_main_driver.c
MarcUs7i ae50527f75 yes
2025-03-18 18:26:12 +01:00

17 lines
No EOL
775 B
C

/*-----------------------------------------------------------------------------
* HTBLA-Leonding / Class: <your class name here>
*-----------------------------------------------------------------------------
* Exercise Number: S01
*-----------------------------------------------------------------------------
* 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");
}