I am going to try XFCE desktop over the weekend. Lets see how that goes...
Here is a picture of my setup (taken 6 months ago)
(click to enlarge)
Another awesome Fedora release!
The Fedora-ARM blog
#define SIZE 20
#define CHARVAL 'a'
#define INTVAL 0x0a0b0c0d
main()
{
char buffer[SIZE] = { 0, };
char *p = buffer, c;
printf("c value = 0x%x\n", CHARVAL);
printf("i value = 0x%.8x %d\n", INTVAL, INTVAL);
/* Ok, lets write them in the buffer one after the other */
*p = CHARVAL;
p++;
*(int *)p = INTVAL;
/* So the buffer should be 0x610d0c0b0a */
print_hex_string(buffer);
}
c value = 0x61
i value = 0x0a0b0c0d 168496141
0x610d0c0b0a000000000000000000000000000000
^^^^----------------here
And there goes your value of "c" stored in the array.
c value = 0x61
i value = 0x0a0b0c0d 168496141
0x0d0c0b0a00000000000000000000000000000000
^^^^----------------here