Tutorials
Posted on
April 20th, 2010 0 Comments
The ACM Student Magazine has a series of courses to teach C++ and java called “Objective Viewpoint”.
The tutorials touch on many aspects of object-orientation. The word object has surfaced in more ways than you can count. There are OOPLs (Object-Oriented Programming Languages) and OODBs (Object-Oriented Databases), OOA (object-oriented ...
Read More |
Make a Comment
Posted on
April 12th, 2010 0 Comments
Google Code University website provides tutorials and sample course content so CS students and educators can learn more about current computing technologies and paradigms. In particular, this content is Creative Commons licensed which makes it easy for CS educators to use in their own classes.
Today’s post is about C++ Operator Overloading Guidelines by...
Read More |
Make a Comment
Posted on
April 8th, 2010 1 Comment
Google Code University website provides tutorials and sample course content so CS students and educators can learn more about current computing technologies and paradigms. In particular, this content is Creative Commons licensed which makes it easy for CS educators to use in their own classes.
In the coming posts I will be adding few course links about C/C++...
Read More |
Make a Comment
Posted on
July 18th, 2009 1 Comment
A binary tree is made of nodes, where each node contains a “left” pointer, a “right” pointer, and a data element. The “root” pointer points to the topmost node in the tree. The left and right pointers recursively point to smaller “subtrees” on either side.
Stanford CS Education Library: introduces the basic concepts...
Read More |
Make a Comment
Posted on
July 14th, 2009 1 Comment
David Brackeen has a very good tutorial on VGA graphics programming for DOS in C programming. The tutorial is a five part C programming tutorial which covers VGA basics, Primitive Shapes & Lines, Bitmaps & Palette Manipulation, Mouse Support & Animation and Double Buffering, Page Flipping, & Unchained Mode. This tutorial covers many topics in...
Read More |
Make a Comment
Posted on
March 28th, 2009 0 Comments
As discussed in the previous post, there are two types of data structures available to C/C++ programmers. One is already built into the programming language and other one is a bit complex in a sense that it can be implemented using the built in data structures and data types. In C/C++ programming language, built in data structures include Arrays, structures,...
Read More |
Make a Comment
Posted on
March 21st, 2009 0 Comments
The basic aim of mycplus.com website was to develop a website for students of C/C++ and data structures. There are lots of tutorials and source code covering different aspects of C/C++ programming language. Today I have decided to write few articles about data structures and their implementation in C/C++.
National Institute of Standards and Technology (NIST)...
Read More |
Make a Comment
Posted on
October 16th, 2008 28 Comments
What is a Union?
If we are having the less memory to use in our program, for example 64K, we can use a single memory location for more than one variable this is called union.
You can use the unios in the followig locations.
You can share a single memory location for a variable myVar1 and use the same location for myVar2 of different data type when myVar1 is...
Read More |
Make a Comment