mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-17 07:26:21 +00:00
13 lines
184 B
C
13 lines
184 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
int main(int argc, char **argv)
|
|
{
|
|
char x[4];
|
|
*((int*)&x) = 1;
|
|
printf("%i\n",x[0]);
|
|
return(0);
|
|
}
|
|
|