C and C++ Programming Resources

Share/Bookmark
Custom Search

Web Applications Security

Posted on July 20th, 2010 0 comments

At my present job I am responsible for web applications administration and security. I lead automation team in all implementation aspects, including project management, process analysis, workflow design, configuration data set-up, systems interface development, system installation, testing, training, go-live, and post-implementation monitoring. One of the major challanges in web applications domain is web development security.

Read More | Make a Comment

Little known features of C/C++

Posted on July 12th, 2010 0 comments

There are always few little known or hidden features in each programming language. AT StackOverflow.com someone started a series of posts “Hidden features of” programming languages. The Hidden Features series is great for people who are new to a certain language.

Read More | Make a Comment

50 C++ Interview Questions

Posted on July 11th, 2010 0 comments

I have compiled a list of repeatedly asking C++ interview questions here. Some of them are very important C++ questions asked by employers like Microsoft, Adobe and IBM.

How do you check whether a linked list is circular?
How do you decide which integer type to use?
How do you differentiate between a constructor and destructor?
How do you [...]

Read More | Make a Comment

Boycott FaceBook

Posted on May 20th, 2010 2 comments

After hearing about Everybody Draw Mohammed Day! (Sallallahu Alayhi Wa-aal-hi-Wasallam) Group on Facebook, I have decided not to use facebook any more for any of my activities. I have closed down my account on facebook and I will not be sharing any more contents on facebook.
Internet is not meant to spread hate but peace and [...]

Read More | Make a Comment

An Introduction to C++

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

C++ Operator Overloading Guidelines

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 California [...]

Read More | Make a Comment

Concurrency in C++ – University of Waterloo

Posted on April 8th, 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.
In the coming posts I will be adding few course links [...]

Read More | Make a Comment

The C++ Standard Library: A Tutorial and Reference

Posted on April 4th, 2010 0 comments

Programming with the C++ Standard Library can certainly be difficult task. Nicolai Josuttis’s The C++ Standard Library is one of the best available books to using the built-in features of C++ effectively.
The C++ Standard Library provides lots of built-in functionality in the form of the Standard Template Library (STL). The STL was created as the [...]

Read More | Make a Comment