How to use 5 byte value in macro
- by shaktisinha
Hi All,
I've just started reading C and have a question about macro.
How can I use a 5 byte value with a macro
For eg.
#define MAX 0xdeadbeaf12
int main(){
printf(" 0x %2x \n", MAX);
}
This code prints adbeaf12 but not deadbeaf12.
Please help.
Thanks