// File: Crash.cpp // Example of program that crashes for debugger // Can also demonstrate scope, again in debugger int b(int i) {return(i/0); // divide by 0 on purpose } void a(int i) {int quo=b(i*5); } int main() {int i=25; a(i*5); }