I've used the following code to invoke MSWord from a DOS based C compiler unsuccessfully....Where am I going wrong?

#include <stdio.h>
#include <stdlib.h>

main()
{
system("C:\helpme!.doc");
}

Thanks in advance.