The result of the unary + operator is the value of its operand. The integral promotion is
performed on the operand. and the result has the promoted type.
and
The operand of the unary + or - operator shall have arithmetic type..
There's one very handy use of the unary plus operator I know of: in macros. Suppose you want to do something like
#if FOO > 0
If FOO is undefined, the C language requires it be replaced by 0 in this case. But if FOO was defined with an empty definition, the above directive will result in an error. Instead you can use:
#if FOO+0 > 0
And now, the directive will be syntactically correct whether FOO is undefined, defined as blank, or defined as an integer value.
Of course whether this will yield the desired semantics is a completely separate question, but in some useful cases it will.
Edit: Note that you can even use this to distinguish the cases of FOO being defined as zero versus defined as blank, as in:
#if 2*FOO+1 == 1
/* FOO is 0 */
#else
/* FOO is blank */
#endif
The unary + operator does only one thing: it applies the integer promotions. Since those would occur anyway if the operand were used in an expression, one imagines that unary + is in C simply for symmetry with unary -.
It's difficult to see this in action because the promotions are so generally applied.
The draft C99 standard section 6.5.3.3Unary arithmetic operators says:
The result of the unary + operator is the value of its (promoted)
operand. The integer promotions are performed on the operand, and the
result has the promoted type.