Name: Anonymous 2012-08-07 14:09
Let's say you have something like:
and it can be written shorter as:
This works but what if the argument is an array or a struct?
Something like
doesn't work. Is there an easier way than using a temporary variable?
int tmp=5;
f(tmp);and it can be written shorter as:
f(5);This works but what if the argument is an array or a struct?
Something like
f({1,2,3});doesn't work. Is there an easier way than using a temporary variable?