int mark = 0; for(int i = 0; i < BLOCK_SIZE; i++){ mark += block[i]*(2 << (1 - i)); }
Standard input is empty
prog.cpp:2:1: error: expected unqualified-id before 'for' for(int i = 0; i < BLOCK_SIZE; i++){ ^ prog.cpp:2:16: error: 'i' does not name a type for(int i = 0; i < BLOCK_SIZE; i++){ ^ prog.cpp:2:32: error: 'i' does not name a type for(int i = 0; i < BLOCK_SIZE; i++){ ^
Standard output is empty