8 lines
122 B
Plaintext
8 lines
122 B
Plaintext
|
#include "sylib.h"
|
||
|
//test add of hex and oct
|
||
|
int main(){
|
||
|
int a, b;
|
||
|
a = 0xf;
|
||
|
b = 0xc;
|
||
|
return a + b + 075;
|
||
|
}
|