Tagged Questions

1
vote
5answers
370 views

How do I find a segfault in my C++ program? [closed]

I'm a relatively new programmer in C++ and I've been doing coding competitions recently and I've noticed a lot of my time is spent searching for segfaults in my program that I can't seem to find the ...
-2
votes
10answers
2k views

Triangle numbers problem…show within 4 seconds

The sequence of triangle numbers is generated by adding the natural numbers. So the 7th triangle number would be 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28. The first ten terms would be: 1, 3, 6, ...