标签:tin std code ntb turn class pre end oid
#include <iostream> void printA() { std::cout << "A" << std::endl; } void printB() { std::cout << "B" << std::endl; } void printAB() { printA(); printB(); } int main() { std::cout << "Starting main()..." << std::endl; printAB(); std::cout << "Ending main()..." << std::endl; return 0; }
标签:tin std code ntb turn class pre end oid
原文地址:http://www.cnblogs.com/funnyweb/p/6215812.html