test.c
#include<stdio.h>
int main()
{
//System("cat test.c");
exit(0);
return(0);
}
output:
#include<stdio.h>
int main()
{
//System("cat test.c");
exit(0);
return(0);
}
when i compile & run this program in c then i want the same output in java program with it's compilation..
i think i hav to do some change in following statement:
//System("cat test.c");
but i'm not getting it...