7 lines
103 B
C++
7 lines
103 B
C++
#include <stdio.h>
|
|
|
|
#include <string>
|
|
|
|
void foo(const std::string& s) {
|
|
printf("%s\n", s.c_str());
|
|
}
|