Don't miss

Monday, 9 September 2013

A Colection Of Basic Codes


So hello to all, I'll  write a few elementary codes for beginners,to  provide a basic insight of C++ , this blog post will see additions from time to time ,so stay tuned. Current Number Of Codes In Blog : 8 To jump to the code you need press "Ctrl + G" and type heading or use the navbar....

Sunday, 8 September 2013

Restarting A Program


Restarting a programme is a very good way to indirectly ask user not to close your program. Restarting your may help user now opening the file to run your program again and again. User can save time with this. After completing your programs , many of you may have wondering if you can restart your program or not....

Sunday, 1 September 2013

Colour Scheme For Codes


You must have noticed that we use different colours/colors in our codes.Its basically to differentiate between the "common code" necessary in every program and the "target code" specifically for the purpose we are programming for.In a layman terms"Different colours ,different purpose" So here they are Blue      This is for libraries. These are basically components(parts) of C++...

Saturday, 17 August 2013

C++: Alphabet Staircase


Output will be A AB ABC ABCD ABCDE Code is : #include<iostream.h> #include<conio.h> void main() { clrscr(); for(int i=65; i<=69; i++)  //To make a bigger staircase , just increase max limit of i from 69 to what you need {cout<<"\n"; for(char j=65; j<=i; j++) cout<<j; } getch(); } createSummaryAndThumb("summary1737136331673139691"); Continue Reading... ...

Friday, 16 August 2013

C++ : Change Case Of An Alphabet


The following code is for a C++ Programme to change the case of a given alphabet. That is : If "a" is input , the output is "A" [ Small letter to Capital letter] If "A" is input , the output is "a" [ Capital letter to Small letter] #include<iostream.h> #include<conio.h> void main() { clrscr(); char a,c; int...