play/C/strange_size/strange_size.c
Artemis Tosini cdab9d90a1
A bunch of changers I neglected to commit earlier
Strange size things (i7 in llvm)
Hellp world in idris
A rolldice test
pppassword changes to add b
2018-12-09 23:54:13 +00:00

11 lines
177 B
C

#include <stdio.h>
#include <stdint.h>
int main(int argc, char **argv) {
uint8_t i = 72;
uint8_t j = 84;
uint8_t k = i + j;
printf("%d + %d = %d\n", i, j, k);
return 0;
}