Hi,
I sightly remember it working in A7 times confused I could be wrong.

Anyway, I feel a better option to write the full code instead of letting the compiler play in the dark.

Code:
#include <acknex.h>
#include <default.c>

function main()
{
 // 'min' shall point on the value of the smallest variable
 var x = 5 ,y = 3;
 var* min;
 
 if(x < y)
    min = &x;
 else
    min = &y;
 
 // output 'min'
 printf(_chr(str_for_num(NULL,*min)));
 
 // determine, whether 'min' is bigger than 4
 if (*min > 4)
    printf(">4");
 else
    printf("<=4");
}



edited: late xP

Last edited by txesmi; 06/22/15 17:27. Reason: late