11 lines
145 B
C++
11 lines
145 B
C++
#include <iostream.h>
|
|
|
|
void main( void ) {
|
|
|
|
char *pch;
|
|
int len = 5;
|
|
|
|
pch = "Hello, my world!";
|
|
cout.write( pch, len );
|
|
}
|