This repository has been archived on 2026-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
niklasjohnson/c/playlist.c
2026-03-18 22:48:20 -07:00

38 lines
953 B
C

#include <stdio.h>
#include <stdbool.h>
int main() {
bool running = true;
while (running) {
// Print menu options
printf("Welcome to the text-based menu!\n");
printf("1. Option 1\n");
printf("2. Option 2\n");
printf("3. Option 3\n");
printf("4. Exit\n");
// Get user input
int option;
scanf("%d", &option);
// Handle user input
switch (option) {
case 1:
printf("You chose option 1!\n");
break;
case 2:
printf("You chose option 2!\n");
break;
case 3:
printf("You chose option 3!\n");
break;
case 4:
running = false;
printf("You chose to exit the menu.\n");
break;
default:
printf("Invalid input. Please try again.\n");
}
}
}