/in/ex2.c: In function 'main':
/in/ex2.c:7:16: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'char (*)[20]' [-Wformat=]
scanf("%d %s", &month, &name);
^
/in/ex2.c:46:5: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
if (emp = 6) {
^~
/in/ex2.c:47:43: warning: zero-length gnu_printf format string [-Wformat-zero-length]
for (i = 0; i < emp+1; i++)printf("");
^~
/in/ex2.c:5:19: warning: unused variable 'j' [-Wunused-variable]
int month, i, j;
^