- 1
4variables cout
I need understand how work
2 Respostas
+ 4
Are you serious?
You finished the full tutorial, you should know how to output variables!
+ 2
int a, b, c, d;
a = 6;
b = 4;
c = 0;
d = 7;
cout << a << b << c << d;
//Output: 6407
I need understand how work