Search results

  1. Loppan

    Programming

    I need help with pointers in C. I have one function that is gonna call two other functions where one fuction looks something like this: void one(int *pointer, int n1, int n2) { *pointer=n1+n2; } and the other looks the same but without pointers.