calling UNIX script from C/C++

Hi all,
Is it possible to call a UNIX script from C/C++ program? If yes, can you please tell me how?
Thank you in advance
Regards

Yes, it is possible. See help on system()

yes

use the following

int return_value = system("sh your_script.sh arg1 arg2");

Thank you very much...