A
arnuld
Section 10.6, Exercise 15 ( I only added "return 0" to the original
main() ). Given this program:
#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}
modify it to produce the output:
Initialize
Hello World!
Clean up
Do not change main() in anyway.
I really don't understand how to go about it.
main() ). Given this program:
#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}
modify it to produce the output:
Initialize
Hello World!
Clean up
Do not change main() in anyway.
I really don't understand how to go about it.