mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 08:26:14 +00:00
17 lines
223 B
C
17 lines
223 B
C
#include <stdio.h>
|
|
|
|
typedef struct {
|
|
unsigned int stuff : 21;
|
|
signed int rotation : 10;
|
|
} Oink;
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
volatile Oink r;
|
|
|
|
r.rotation = 45;
|
|
fprintf (stderr, "%d\n", r.rotation);
|
|
return 0;
|
|
}
|