mirror of
https://github.com/ehw-fit/ariths-gen.git
synced 2025-04-04 06:11:41 +01:00

* automated pandoc deploy * automated pandoc deploy (v2) * automated pandoc deploy (v2) * automated pdoc deploy (v3) * automated pdoc deploy (v4) * automated pdoc deploy (v5) * automated pdoc deploy (v5) * prepare for python project * 8-bit testing * 8-bit testing * 8-bit testing (v2) * 8-bit testing (v3) * update of sign
18 lines
290 B
C
18 lines
290 B
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
uint64_t CNAME(uint64_t a, uint64_t b);
|
|
|
|
|
|
int main() {
|
|
int result = 0;
|
|
for (int i = 0; i < 256; i++){
|
|
for (int j = 0; j < 256; j++){
|
|
result = i + j;
|
|
|
|
assert(result == (int)CNAME(i,j));
|
|
}
|
|
}
|
|
return 0;
|
|
} |