Language Basic

 

Hello guys! I have one question

is it any diference between 

static int some;

//or

int static some;

Thanks

 
DannyBass: Hello guys! I have one question. is it any diference between. Thanks

The compiler accepts both, and they are the same, but you should use the first one which is the more correct of the two.

 
Fernando Carreiro #:

The compiler accepts both, and they are the same, but you should use the first one which is the more correct of the two.

Thank you

Reason: