// CODE TAG // Help with Code Tags C++ Syntax (Toggle Plain Text) // your code here// // your code here // void matpro(int,int,int); void main() { // call matpro matpro(1,2,3); } void matpro(int a,int b, int c) { // implm. here }
// your code here//