• Users
  • Naughty Albatross

User profile: Naughty Albatross

This account has limited functionality.
This was likely due to the user being reported by not following some specific rules for a service in this website.
If you believe this to be an error, please use our Contact form
User info
User name:Naughty Albatross
Old user name:closed account 5a8Ym39o6
Bio:Hello everyone.
I am a C++ programmer. I am a beginner (with some experience). I am here to help the C++ community and learn more about programming.
History
Joined:
Number of posts:1283
Latest posts:

Trying to teach myself c++, just wondering how to populate array with for loop.
> Thanks very much, I've never seen something like "for(auto& itr : array)" It is actually a range-b...

closed_account::vector_ptr, closed_account::unique_vector_ptr code review
Hello, I have finished a smart pointer named closed_account::vector_ptr. I have also finished a sma...

Point, square and cube by inheritance
Hi, try this : [code]#include <iostream> #include <math.h> using namespace std; class Point { pub...

Point, square and cube by inheritance
Hi, One point is not enough. You need at least two points before you can determine the length of a ...

Linked list deallocation exception error
Hi, [code]Node * temp = current; delete current; current = temp->next;[/code] Should be : [...