A call to any function which returns a value is an expression.
int getNumber(void) [ return 5; } void test() { int a; a = 10 + getNumber(); }
Last updated 4 years ago
Was this helpful?