Visual Studio Code – Program stops working and it says zsh abort
So here is my code #include<math.h> #include<stdio.h> #include"hw1.h" int main (int argc, char *argv[]) { int num_choices, k; char right_choices[20]; do { printf("Enter number of choices:n"); scanf("%d", &num_choices); } while ((num_choices > 26) || (num_choices < 1)); num_choices = num_choices…