If there is a thread you feel belongs here, please reply and a moderator will add it to this post.
C++ Quick Reference Cheat Sheet
C++ Compiler Information from Bjarne Stroustrop: The Creator of C++
Threads:
- Our homework help policy
- List of C++ resources
- Holding the execution window open
- KYA's data structure adventures
- Converting exe's to C/C++ source code
- Unique Random Numbers (No Same Number Twice)
- Determine change: number of each coin
- Books on C++
- Printing a diamond
- Pointers in C
- why int main() & 0.0f (what's this f)
- How to get color in C/C++ console applications
- How to run old Turbo C/C++ on modern PCs
- int Argc, Char **argv
- Post- and Pre-increment behavior
Snippets:
- Number Guessing Game Snippet
- Fibonacci Using Do-While
- Resursive Fibonacci Sequence
- Remove Extra White Space Snippet
- Convert int to string, string to int, get ascii code of character and get character of an ascii code
- C++ String to Char
- BubbleSort an array in C++
Tutorials:
- How to Generate Random Numbers
- Loops
- Conditions, use == operator!!!
- Linked lists
- Functions
Functions (Basics)
Functions (Pass-By-Value, Pass-By-Pointer/Pass-By-Reference, Arrays) - Basics of Function Pointers
Developer Blogs:
Common Windows/Visual Studio Errors:
- Error:
error C2664: cannot convert parameter ... from 'const char *' to 'LPCWSTR'
Fix: Under Project Menu -> Properties-> Configuration Properties->General change the Character Set option to Use Multi-Byte Character Set or Not Set.
- Error:
error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup[/i]
Fix: Go to Project->Project Properties->Configuration Properties->Linker->System and change the SubSystem dropdown value from Windows (/SUBSYSTEM: WINDOWS) to Console (/SUBSYSTEM: CONSOLE)
Offsite Links:
- things to avoid in C/C++ -- gets()
- things to avoid in C/C++ -- fflush(stdin)
- things to avoid in C/C++ -- void main()

New Topic/Question
Reply




MultiQuote








|