What is C++?

C++ is an object oriented programming language. It was developed by Bjarne Stroustrup at AT&T Bell Laboratories in the Murray Hill, New Jersey, USA, in the early 1980’s. Stroustrup, an admirer of Simula67 and a strong supporter of C, wanted to combine the best of the languages and create a more powerful language that could [...]

Continue reading →

Visual Studio 2010 Beta 2

Introduction: It is the most  powerful Mocrosoft Beta2.Design your own imagine here.New tools,new prototype. Set Your Ideas free: Create what you can imagine, build on the strengths of your team, and open up new possibilities. New prototyping, modeling, and visual design tools enable you to create innovative applications for Windows and the Web Create a shared vision as [...]

Continue reading →

Polymorphism in C++

If you are new to the world of object-oriented programming, then your first thought after reading the title of this article is “what the heck could ever transform in code?” The answer is not so trivial that I can explain it in just a sentence, but join me throughout this article and you will get [...]

Continue reading →

C C++ Structures Example with Source code

/* Program To Display The Highest Salary Of A Employees */ int count; struct employee { int idno,salary; char name[10]; }; struct employee s[10]; void main() { int i,loc=0; float top; clrscr(); printf(“Enter Number Of Employees : “); scanf(“%d”,&count); for(i=0;itop) { top=s[i].salary; loc=i; } } printf(“\nThe Highest Salary Is : “); printf(“%s”,s[loc].name); getch(); } /***************** [...]

Continue reading →