So I want to convert this C language program to Assembly:
void main
{
int year;
printf("Enter the year: ");
scanf("%d",&year);
if(year%400 ==0 || (year%100 != 0 && year%4 == 0))
{
printf("Year %d is a leap year",year);
}
else
{
printf("Year %d is not a leap year",year);
}
}
Can you help me figure out how it is mapped in Asm? I tried to convert it using this link: http://assembly.ynh.io/ but I'm having an error: Error: Command failed: /tmp/test683852013.c:2:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘attribute’ before ‘{’ token
I would gladly appreciate your help. Thanks.