assignation

//assignation #include<iostream> using namespace std; int main() { int a,b; //a:? b:? a=10; //a:10 b:? b=4; //a:10 b:4 a=b; //a:4 b:4 b=7; //a:4 b:7 cout<<"a:"; cout<<a; cout<<"b:"; cout<<b; return 0; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.