zeus
4 years ago
1 changed files with 16 additions and 6 deletions
@ -1,8 +1,18 @@ |
|||
#include <stdio.h> |
|||
#include <fstream> |
|||
#include <string> |
|||
|
|||
int |
|||
main (void) |
|||
|
|||
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(); |
|||
|
|||
printf ("Hello, world!\n"); |
|||
return 0; |
|||
} |
|||
|
|||
|
Loading…
Reference in new issue