Use this main() and complete the program. You will need to add two functions.
int main()
{
int i = 1, j = 1;
printf("Before the call to incrementByValue(): i = %d\n",i);
incrementByValue(i);
printf("After the call to incrementByValue(): i = %d\n",i);
printf("Before the...