#define power(a) #a
  int main()
  {
    printf("%d",*power(432));
     return 0;
  }
can anyone explain the o/p??
the o/p is
52
It is equivalent to:
printf("%d",*"432");
which is equivalent to:
printf("%d", '4');
and the ASCII value of '4' is 52.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With