Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#define power(a) #a
  int main()
  {
    printf("%d",*power(432));
     return 0;
  }

can anyone explain the o/p??
the o/p is

52

share|improve this question
3  
What do you think it does? Have you made any effort understanding this code? It's trivial. – H2CO3 Mar 2 at 14:13
i m not able to understand what '*' does?? – akash Mar 2 at 14:17
2  
In that case you're in the most serious need of reading a basic C language tutorial. It's used for pointer dereferencing. – H2CO3 Mar 2 at 14:17
1  
@akash in power(432) => "432" and *"432" => "432"[0] => '4' and because %d ascii value printed. Remember we do char* ch = "432" that means type of a string is "432" is char* so we can index using []. as we can do ch[] Your macro convert macro function argument to string. because single # operator. – Grijesh Chauhan Mar 2 at 14:21

2 Answers

up vote 11 down vote accepted

It is equivalent to:

printf("%d",*"432");

which is equivalent to:

printf("%d", '4');

and the ASCII value of '4' is 52.

share|improve this answer
#define power(a) #a   //# is a stringization operation in macro
  int main()
  {
    printf("%d",*power(432));
     return 0;
  }

Hence after calling power(432), macro will return it "432" and applying * on it gives first value which is nothing but 52 (48 + 4) for '4' . 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.