HR Interview Interview undefined

ABC+ABC+ABC=CCC

Read Solution (Total 2)

HR Interview Other Question

48!*(48!+2*31!)^3/(48!-31!)^3-31!(2*48!+31!)^3/(48!-31!)^3 int main() {
int days;
printf("enter days you are late"); scanf("%d",days);
if (days<=5)
printf("5o paisa fine");
if (days<=10&&days>=6)
printf("1rs fine");
if(days>10)
printf("10 rs fine");
if(days=30)
printf("membership cancelled");
return 0;
}
tell me what's wrong in this program? is it right?