20-queue-and-stack/queue_stack_main_driver.c
github-classroom[bot] e6e6f4ae94
Initial commit
2025-04-01 10:41:03 +00:00

17 lines
No EOL
759 B
C

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