#define MIN(A,B) ((A) <= (B) ? (A) : (B))
this is the macro , I was asked what's the side effect if I used the following :
least = MIN(*p++, b);
Note: This was embedded c question
Thank u
|
|
|
It evaluates You should try it yourself. |
|||
|
|
|
The macro will expand to:
you will have then |
|||
|
|
Also, there is no such thing as "embedded C". |
|||
|
|