•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the C++ section within the Software Development category of DaniWeb, a massive community of 397,767 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,483 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our C++ advertiser:
•
•
•
•
•
•
•
•
Hey,
Here is a program I made which has interested quite a lot of people over the past few weeks, so I figured I would share it :)
Using a small amount of trigonometry you can create some very fascinating shapes and effects. But in order to draw anything you need a surface to draw on, so to keep... (View Snippet)
This is a program I designed that implements a little bit of vector-math to determine the collision between 2 vectors.
Hopefully this program will be useful to those out there designing 2D graphics programs and need a better solution to determining graphical object-to-object collisions when two... (View Snippet)
Here is a simple Polynomial class.
Its purpose is to show how one can simply create a Polynomial class without using abstract datastructures such as linked lists etc.
Each term is printed out in order of its power - from highest to lowest.
Inspiration was taken from a Java source code, the link... (View Snippet)
A program that uses hooks to detect keypresses and write them to a file. (View Snippet)
How to sort a class by their various attributes in C++ (View Snippet)
Nothing too special, but it was an interesting task. (View Snippet)
Well technically it isn't an anagram finder, more of a word descrambler program.
It is useful for games like scrabble etc.
All you need is a dictionary file, which you can find readily online. Make sure the file has the words on each line and they are all in lowercase.
The program has a good... (View Snippet)
This code is an example of a simple bubble sort function in C++.
the function doesnt receive or returns nothing
just for the record, some translations
"declaracion de constante" = constant declaration
"prototipo de funcion" = function prototype
"arreglo" = array (View Snippet)
This code was part of my first quarter 2nd semester project for a subject called programming 2.
its a simple roman to arabic convertion function. (View Snippet)
this is the other part of my 2nd semester, first quarter project for programming 2.
a simple function to convert from arabic numbers to roman numbers. (View Snippet)