I can create an array of bytes like below:
test_array[3] = {0x01, 0x02, 0x03};
I want an array of bytes like above, but with random bytes. For example, I just declare that I need an array of 10 bytes. and then I get the array of size 10, but all random bytes. So that at the end, when I write:
printf("My array is: %d", test_array);
I need to see this:
{0x09, 0x15, 0xA1, 0xB2, 0xF1, 0x33, 0xBC, 0xCA, 0x1B, 0x9D};