CHAPTER3-2.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:0k
- //文件名:CHAPTER3-2.cpp
- #include <string>
- #include <iostream>
- void printstring(const std::string& str) { std::cout << str << std::endl;}
- int main(){ std::string str("Hello World"); printstring(str);}