next up previous
Next: LANCE Generated IR Up: Example1 Previous: Example1

High Level C Program

int max(int a, int b)
{
    if(a>b)
        return a;
    else
        return b;
}
void main()
{
    int x,y;
    scanf("%d%d",&x,&y);
    printf("%d",max(x,y));
    return ;
}



2006-03-18