I'm interested to read one byte of memory in C.Im using netbeans on ubuntu and below is my code to read just one byte(not the whole value of a). but nothing is printed out on the screen.
main()
{
int a[1]={3};
//printf(%d",a[0]); //line 2
printf("\x07",a[0]); //line 3
}
in my idea, the memory in address with label a is composed of:
- 0x0004 03
- 0x0008 00
- 0x000c 00
- 0x000f 00
printf() statement in line 2 indicates that go to the address 0x???4 and :
- read 4 bytes (because of d character)
- Represent these 4 bytes as a number meaning that multiply them by power of 2 (because of d character)
printf() statement in line 3 use \ (and not %) and bits from 0 to 7 (1 byte). so it indicates that, go address 0x0004 and:
- List item
- read 1 byte (because of 07 characters) 2-Do nothing except that show each 4-bit as a hex value
so the code should print out what the first byte in 0x0004 which is 03. but it does not. any clue?
Thanks in advance
Please don't just correct my syntax. Do you think my hypotheses are correct regarding formatters in printf?