With the following block of code, I get the error message "Expected initializer before 'void'.
#include <iostream>
void Add( int add1, int add2)
void Sub( int sub1, int sub2)
void Mlt( int mlt1, int mlt2)
void Div( int div1, div2)
but I only get the error in the line declaring the Sub function. HELP!
#include <iostream>
void Add( int add1, int add2)
void Sub( int sub1, int sub2)
void Mlt( int mlt1, int mlt2)
void Div( int div1, div2)
but I only get the error in the line declaring the Sub function. HELP!
Comment