10 lines
309 B
C++
10 lines
309 B
C++
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
int main (int argc, char const *argv[])
|
|
{
|
|
const char* stringdata = "hello world; I like to write text in const char pointers";
|
|
uint8_t bytedata[] = {0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99};
|
|
return 0; // break here
|
|
}
|