printf("%s", 0x216f6c6c6548); // "Hello!" reversed
It should print "Hello!" but it doesn't. I expected the same result of:
long long ll = 0x216f6c6c6548;
printf("%s", &ll);
or
printf("%s", "Hello!");
Is it possible to print a number as a string?
UPDATE
Is it possible to print directly a number as a string?