mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
13 lines
193 B
C++
13 lines
193 B
C++
// compound assignment operators
|
|
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
int main ()
|
|
{
|
|
int a, b=3; /* foobar */
|
|
a = b;
|
|
a+=2; // equivalent to a=a+2
|
|
cout << a;
|
|
return 0;
|
|
} |