#define _CRT_SECURE_NO_WARNINGS
#include
using namespace std;
int main()
{
char ch = ‘a’;
cout.put(ch) << endl;
cout.put(‘a’).put(‘b’).put(‘c’) << endl;
system(“pause”);
return 0;
}
#define _CRT_SECURE_NO_WARNINGS
#include
using namespace std;
int main()
{
char *p = “chuan zhi bo ke”;
cout.write(p, 8).put(’\n’);
cout.write(p, strlen§) << endl;
system(“pause”);
return 0;
}