2018-11-11 20:59:42
¨Û Ãßõ
¨á ´ÜÃàURL
|
|
|
| https://humoruniv.com/program6641 URL º¹»ç |
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int fd;
int fw;
int main£¨int argc, char *argv[]£©{
fd = open£¨"in1.txt", O_CREAT | O_TRUNC | O_RDWR, 0644£©;
if£¨fd == -1 £©{
cout << "error";}
fw = open£¨"out1.txt", O_CREAT | O_TRUNC | O_WRONLY,0644£©;
if£¨fw == -1£©{
cout << "error_2";}
char a[20] = "1234";
write£¨fd,a,sizeof£¨a£©£©;
close£¨fd£©;
close£¨fw£©;
return 0;
}