MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / menu

Function menu

Arrays/32_Operations_on_arrays.c:22–31  ·  view source on GitHub ↗

main menu

Source from the content-addressed store, hash-verified

20
21// main menu
22int menu()
23{
24 printf("Press 1 for insertion\n");
25 printf("Press 2 for deletion\n");
26 printf("Press 3 for traversing\n");
27 printf("Press 4 for linear search\n");
28 printf("Press 5 for selection sort\n");
29 printf("Press 9 to exit\n");
30 scanf("%d", &menuOption);
31}
32
33int menu1()
34{

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected