Search Results
Searching for: Namespace in C++
Do While Loop
Language: C++
The do-while loop executes a block of code while a boolean expression evaluates to true. It checks the boolean expression after each iteration. It terminates as soon as the expression evaluates to false.
Smart Pointers
Language: C++
Smart pointers are pointers that are deallocated for you, as opposed to having to make sure you 'delete' or 'free' the pointer.
< Previous Page | Next Page >