/* I'm new on c ++ and i been strugling with this problem.
create the special functions used by this routine and
write the functions so it can be used by the main routine as shown*/


#include <stdio.h>
#include <stdlib.h>

void divideArgs(&parmA, &parmB);
{
int temp = *parmA;
*parmA = *parmB;
*parmB = temp;
}

/* MAIN */
int main(int argc, char **argv) {
if (argc != 3) {
printf("?Invalid number of arguments\n");
system("pause");
exit(1);
}
int parmA = atoi(argv[1]);
int parmB = atoi(argv[2]);

/* Divide parmA by parmB. Put the quotient in parmA, remainder in parmB */
/* Reset the original values after we print the result */
printf("Quotient of %d / %d is ",parmA,parmB);
// divideArgs(&parmA, &parmB);
printf("%d, remainder is %d\n",parmA,parmB);
parmA = atoi(argv[1]);
parmB = atoi(argv[2]);


}
printf("\n");

system("pause");
exit(0);
}

Maybe you should set a type to parmA & parmB:

void divideArgs(int *parmA, int *parmB){
int temp = *parmA;
*parmA = *parmB;
*parmB = temp;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.