After getting user input the program ends , what's wrong in this code?
#include <stdio.h> int main(){ int month; printf("Enter any number from 1 to 12 :"); scanf("%d",month); switch(month){ case 1: printf("%d Month is January",&month); break; case 2: printf("%d Month is Feb",&month); break; case 3: printf("%d Month is march",&month); break; case 4: printf("%d month is apirl",&month); break; case 5: printf("%d month is may",&month); break; case 6: printf("%d month is june",&month); break; case 7: printf ("%d month is july",&month); case 8: printf ("%d month is august",&month); break; case 9: printf ("%d month is september",&month); break; case 10: printf ("%d month is octomber",&month); break; case 11: printf ("%d month is november",&month); b