I'm not sure how to deal with file paths when programming in windows. Here is my attempt thus far.

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

char eclipse[150];

int main()
{   
    strcpy(eclipse, "C:\Documents and Settings\Owner\Desktop\eclipse\eclipse.exe -vm C:\WINDOWS\system32\javaw.exe");
    system(eclipse);
    return 0;
}