tags:

views:

86

answers:

1

how can I run system("") without showing cmd.exe?

I use cstdlib header code::blocks 10.5

I saw this question for c# but I don't know c# ;)

+6  A: 

I believe you'll have to go with CreateProcess instead.

Judge Maygarden