D Que2.cpp
D Que2.cpp
people. However, there's a bug in the code that causes it to crash when run. Use
GDB to debug the code and find the bug.
#include <bits/stdc++.h>
int main() {
// Create an array of people
Person people[] = {
Person("John", 25, 170),
Person("Alice", 30, 165),
Person("Bob", 20, 180),
Person("Charlie", 35, 175),
Person("David", 40, 160)
};
return 0;
}