2.[10 pts] Consider prob2.c. Assume this code is compiled and prob2 is the resulting program. Explain the following output 120> prob2 0 20 Segmentation fault (core dumped) 121> prob2 1 20 finalthing is 12994 Since I don't know anything about assembly, I can only assume from the code that what ever it is doing, it doesn't like 0 as the first argument, but will take 1 as a first argument. I could get the same effect with this... I think.... #include main() { int a = 8; int b = 0; int c = a / b; cout << c << endl; }