Create an ADO connection in C++ to your SQL Server.
Set the connection parameters.
Use a string to contain the information. ie strSQL = "exec sp_Something " + var1 + "," + var2"
Then execute the information. ie adConn.Execute strSQL
I don't have the correct syntax infront of me, but I am pretty sure this is how it works.
Hope this helps.