Hi to All
one way to declare function is macro
forexample
#define sqr(x) (x*x)
and other way is to make function inline in both cases, processor will replace the call by actual body of the function before compile and than process the code.
Now I want to know what the difference between in these two declaration.
tnx in advance
tekdev
one way to declare function is macro
forexample
#define sqr(x) (x*x)
and other way is to make function inline in both cases, processor will replace the call by actual body of the function before compile and than process the code.
Now I want to know what the difference between in these two declaration.
tnx in advance
tekdev