What is an example of a crash? How destructive is it? Here’s a simple example. MyFunction takes a string parameter and calculates its length MyFunction (char * StringParam) { int nlen; // declare an integer variable nlen = strlen(StringParam); <more code> } Doesn’t look like ...