H
hkg35
if ( a == 3 ) ---> if( a is 3 )
if ( a != 3 ) ---> if ( a not 3 )
if( a > b && b > c ) ---> if ( a > b > c ) , if( a > b and b >c )
if( a > b || b > c ) ---> if ( a >b or b > c )
those are more human readable, I guess
I know some can be done be "Macro" , and some
some might hard for compiler implementation, but does it make sense to
both human & computer ?
if so why not, please !
and we need default value on function, not only from the end
like this : my_function ( default, default, 0 ); can we ?
if ( a != 3 ) ---> if ( a not 3 )
if( a > b && b > c ) ---> if ( a > b > c ) , if( a > b and b >c )
if( a > b || b > c ) ---> if ( a >b or b > c )
those are more human readable, I guess
I know some can be done be "Macro" , and some
some might hard for compiler implementation, but does it make sense to
both human & computer ?
if so why not, please !
and we need default value on function, not only from the end
like this : my_function ( default, default, 0 ); can we ?