, , :
cout << c << ' ' << i1 << ' ' << c2 << '\n';
, :
cout << c << ' << i1 << ' << c2 << '\n';
' << i1 << '
( ) , int
, .
[lex.ccon]/2
:
, c- char, . [...] , int , .
Its use is relationally rare, I personally saw it as a way of defining arbitrary constants, for example, in
enum state { wait = 'wait', start = 'start', };
source
share