7
std :: string이있는 printf?
내 이해는 네임 스페이스 string의 멤버 std이므로 왜 다음이 발생합니까? #include <iostream> int main() { using namespace std; string myString = "Press ENTER to quit program!"; cout << "Come up and C++ me some time." << endl; printf("Follow this command: %s", myString); cin.get(); return 0; } 프로그램이 실행될 때마다 myString위 …
157
c++
string
namespaces
printf
std