Libraries and Namespaces
C++ comes with a number of standard libraries.Some libraries are commercial & limited to perticular compiler while some are included in every compiler.These libraries place their definitions inside...
View ArticleDeveloping C/C++ programs under ubuntu
I already covered how to write c++ programs in linux. But in that article, i didn’t mentioned about how to install compilers and stuff. So this post will cover how to install compilers in ubuntu and to...
View ArticleUsing MS-SQL Server Express
Earlier I have written beginners guide on MS-SQL server. In this post i’ll cover few more things about ms-sql server which are intended towards beginners. If you are beginner then I suggest you to read...
View ArticleTriggers in MS-SQL Server
Whenever database is modified then triggers are fired based on the event set. Two logical tables are created when triggers are fired. 1. Inserted 2. Deleted Types of triggers: 1. Insert trigger 2....
View ArticleHow to use scanner class in java ?
Whenever you want interactivity in your program then you need to get input from the user. Most of the applications require input from user and with or without modification output is displayed to user....
View ArticleDifference Between Session Bean and Entity Bean
In this post i’ve explained some of the differences between session bean and entity bean. Session Beans - Session Beans represent a process or flow. - Each session bean is associated with one EJB...
View ArticleXML Syntax Rules
XML is growing rapidly and you’ll find yourself working with XML files while working on java or .NET platform. There are some rules that needs to be considered while working with XML files. In this...
View ArticleIronPython Windows Forms – Event Handling
Building windows forms using ironpython is very easy. If you want to make you windows forms perform certain task then you need to add event handlers into it. Working with event handlers is a bit tricky...
View ArticleRegular Expressions in Python
A regular expression in python is a special module that helps filter sequence of strings, characters and symbols using specialized syntax written in a particular pattern. Like any other programming...
View ArticleHow to Use a Git Repository – Guide to Github and Bitbucket CVS
The purpose of this tutorial is to teach you how to use git for hosting your project on github and bitbucket. I am going to cover installation of git and using multiple repositories. If you are new to...
View ArticleBorland C++ Builder -Components
In previous posts,I’ve covered some details about creating windows & console applications.If you haven’t read the previous part,please take a look at part1,part2 & part3.For those who followed...
View ArticleC++ under linux
There are plenty of ways with which you can do C++ programming under linux. You can use mdern IDE’s or use VI/Emacs to create C++ program files then can even use gcc on terminal to compile and execute...
View ArticleC++ Templates
Template in C++ is very interesting topic. Templates allow you to define functions and Classes that have parameters for type names. This article is about C++ templates, its types and its usage. What...
View ArticleWINBGIm Graphics
Previously, I’ve discussed installation & configuration of Winbgim with Dev-C++ here. As devpaks for Winbgim are released, things are now much better than before. This article is designed to help...
View ArticleC++: Multiple Source files
It can be inconvenient to write a long program within a single file. When programs grow to hundreds or thousands of lines, breaking them into modular units helps manage the program.This way you can...
View Article