Initial commit

This commit is contained in:
2021-10-01 20:24:05 +02:00
commit 860c025165
194 changed files with 4846 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include <stdio.h>
int main(void)
{
unsigned char a = 12; /* 0000 1100 */
unsigned char b = 9; /* 0000 1001 */
unsigned char c, d;
c = a & b;
d = a | b;
printf("OCH = %d\n", c);
printf("ELLER = %d\n", d);
return 0;
}