topical media & game development
basic-program-code-02-Ex2-02.c
? /
basic-program-code-02-Ex2-02.c
// Ex2_02.cpp
// Exercising output
include <iostream>
using std::cout;
using std::endl;
int main()
{
int num1 = 1234, num2 = 5678;
cout << endl; // Start on a new line
cout << num1 << num2; // Output two values
cout << endl; // End on a new line
return 0; // Exit program
}
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.