Hello everyone,
I'm new to C / C++, and just wanted to make a file which can delete an item. The code worked, but when I want to give a path, it doesn't work anymore. Any help?
#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
remove ("c:\users\asus\new.docx");
return 0;
}
I'm running Vista, and use Microsoft visual studio 2008 express edition.