Flowcharts is good
#include <stdio.h>

// A function that TRIES to add money without a pointer
void fakeDeposit(int cash) {
    cash = cash + 50; 
    printf("Inside Function: I added $50! Balance is now: %d\n", cash);
    // FUNCTION ENDS HERE: The variable 'cash' is destroyed. 
    // The $150 vanishes.
}
flowcharts is good
i a adb
Topic Image