include<stdio.h>
include<stdlib.h>
int main()
{
char a[20]="hello world";
system("./cool.bat a");\\here I need to pass the array as argument to batch file
}
I believe you got what I wanted to say. I want to pass an array of the c program, as an argument to batch file. But if i say
system("./omnam.bat a") \\ its taking a as an argument
How do i make it? How can i send a variable or array of c program as an argument to the batch file. Suppose i might have an integer I in a c program holding a value 15.How can i pass it as an argument to the batch file ? Can anyone please post an example of it with some c file and batch file.Thank you