About
Contact
QtCreator
KDevelop
Solarized
1
#include <stdint.h>
2
#include
<stdio.h>
3
4
struct
Bytes
{
5
uint8_t
ubyte
;
6
int8_t
sbyte
;
7
};
8
9
int
main
(
) {
10
struct
Bytes
bytes
= {
0x30
,
0x01
};
11
(
void
)
bytes
;
12
printf
(
format:
"break here\n"
);
13
}
14