#define power(a) #a
int main()
{
printf("%d",*power(432));
return 0;
}
can anyone explain the o/p??
the o/p is
52
can anyone explain the o/p?? 52 |
|||
|
It is equivalent to:
which is equivalent to:
and the ASCII value of |
|||
|
|
|
|||
|
|
power(432)=>"432"and*"432"=>"432"[0]=>'4'and because%dascii value printed. Remember we dochar* ch = "432"that means type of a string is"432"ischar*so we can index using[]. as we can doch[]Your macro convert macro function argument to string. because single#operator. – Grijesh Chauhan Mar 2 at 14:21