topical media & game development
basic-program-code-02-Ex2-09.c
? /
basic-program-code-02-Ex2-09.c
// Ex2_09.cpp
// Demonstrating namespace names
include <iostream>
int value = 0;
int main()
{
std::cout << "enter an integer: ";
std::cin >> value;
std::cout << "\nYou entered " << value
<< std:: endl;
return 0;
}
(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.