我有一个简单的问题。代码真的很短,所以我把它贴在这里
#include <stdio.h>
int main(int argc, const char * argv[])
{
long int p;
printf("FYI: address of first local varaible of main() on the function stack:%p\n",&p);
printf("Enter start address <hex notation> of dump:");
scanf("%lx",&p);
char * q;
q = (char*)p;
printf("%x\n",*q);
return 0;
}
最后一个 printf 的结果,例如是 ffffffc8。如果我只想保留最后两个怎么办:c8. 我怎样才能做到这一点?我试过了:
printf("%2x",*q);
但
printf("%x",*q % 256);
都不管用。有人可以帮忙吗?谢谢!