06_const_var_defn2.sy 83 Bytes
Newer Older
龚平's avatar
init  
龚平 committed
1 2 3 4 5 6
//test const gloal var define
const int a = 10, b = 5;

int main(){
    return b;
}