zeus
4 years ago
1 changed files with 16 additions and 6 deletions
@ -1,8 +1,18 @@ |
|||||
#include <stdio.h> |
#include <stdio.h> |
||||
|
#include <fstream> |
||||
|
#include <string> |
||||
|
|
||||
|
|
||||
|
int main (int argc, char *argv[]) |
||||
|
{ |
||||
|
|
||||
|
std::string path(argv[1]); |
||||
|
std::fstream file; |
||||
|
file.open(path,std::ios::trunc | std::ios::out); |
||||
|
file<<"hello world\n"; |
||||
|
file.close(); |
||||
|
|
||||
int |
|
||||
main (void) |
|
||||
{ |
|
||||
printf ("Hello, world!\n"); |
printf ("Hello, world!\n"); |
||||
return 0; |
return 0; |
||||
} |
} |
||||
|
|
||||
|
Loading…
Reference in new issue