Created: 2023-01-11 11:23
Status: #concept
Subject: Programming
Tags: C Rvalue Operators

Expression

It is an evaluated value that is a result of two other Constants or Variables delimited by Operators.

  • they can also be returned from Function calls.

C

// the sum of a Compound Literal array with the size of 5 is assigned to the variable total
int total = sum_array( (int []){3, 0, 1, 4, 2}, 5 );

References