Skip to main content

Posts

C++ program to check whether a string is palindrome or not

Write a function that checks whether a string is Palindrome or not. Use this function to check user-entered strings. Also count and display the number of odd or even palindromes in it #include<iostream> #include<string> using namespace std; static int count_even, count_odd; void palindrome(string &a) { char tmp; bool chk=false; int slen=a.length(); string str2=a; for(int i=0;i<slen;i++) { if((a[i]>='a' && a[i]<='z') || (a[i]>='A' && a[i]<='Z')) chk=true; else chk=false; } if(chk) { // Code to reverse string for(int n=0;n<slen/2;n++) { tmp=a[n]; a[n]=a[slen-1-n]; a[slen-1-n]=tmp; } } else { cout<<"\n User entered a non-valid string\n Please enter a new string"; return; } if(str2==a) { if(slen%2==0) count_even++; // length of the string is even else count_od...

How to Disable or Remove BitLocker Drive Encryption

To disable or decrypt BitLocker, follow these steps: Log on to the computer as Administrator. From Control Panel, open BitLocker Drive Encryption. To temporarily disable BitLocker by using a clear key, click Suspend Protection and then click Yes. To disable BitLocker permanently, click Turn Off BitLocker and then click Decrypt Drive.

Security TIPS for Facebook Users

1. Always use a small resolution Picture as Profile Pic. 2. Goto Privacy Settings.. ->Connecting on Facebook-> Check all options for Friends Only and For FRIEND LIST->ONLY ME 3. Sharing on Facebook-> All set as Friends Only even Albums/Videos should be friends only. For Contact information -> lock Email and Mobile Phone-Only ME. Never show your email and mobile on Facebook. 4. for Mobile protection to save your profile from hacking www.facebook.com/mobileprotection give a permanent No of your father or mother dont give a prepaid temp. no. which keeps on changing. 5.Privacy Setting-> Application/Games/Websites-> Public Search->Remove Tick from Enable Instant Personalisation-> Remove tick from enable Games/Activity-> Only Me Remove Suscipious Applications from Application List. 6. Account Settings->Account Security-> Tick on Always use https, Send Login Notification/approvals on Cell/Email Enable it. 7. Dont Click on suspicious links with Tiny U...

How to compile C/C++ programs on Linux using gcc

You can type your C/C++ program using any of the editor that are available under Linux such as vi or emacs. Once you have written your program and saved it with .c or .cpp extension, return to command prompt. for eg. you have saved your program named as "myprogram.c". Compilation Syntax: -   $ gcc -o program1 myprogram.c Here, $  Linux command prompt. gcc is a compiler which can compile both c or c++ programs (you can either use cc to compile c programs only). -o is an option to create output file. program1 is an executable file name (you can give any name as you want). myprogram.c  is your source file. Note :- Giving executable file (program1) is not necessary (e.g. :- $ gcc myprogram.c ). By default gcc maintain a common executable file that can be execute by typing $ ./a.out.  This is the default name of the executable that gcc creates. This would create problems when you compile many programs in one directory. So you override this with th...

varchar vs nvarchar

varchar vs nvarchar varchar : - is an abbreviation for variable-length character string .                  This in turn limits the maximum size of a VARCHAR to 8,000 bytes.                  Syntax: - field_name varchar(50); nvarchar : - The "N" in NVARCHAR means uNicode .                    NVARCHAR is nothing more than a VARCHAR that supports two-byte characters.                    The most common use is to store character data that is a mixture of English and non-English symbols(other languages' characters) - such as English and Hindi.                    Syntax: - field_name nvarchar(50)...

You are not Alone I'm here with you

http://www.youtube.com/watch?v=9dt2UeaMqlY Another day has gone I'm still all alone How could this be You're not here with me You never said goodbye Someone tell me why Did you have to go And leave my world so cold Everyday I sit and ask myself How did love slip away Something whispers in my ear and says That you are not alone For I am here with you Though you're far away I am here to stay But you are not alone For I am here with you Though we're far apart You're always in my heart But you are not alone 'Lone, 'lone Why, 'lone Just the other night I thought I heard you cry Asking me to come And hold you in my arms I can hear your prayers Your burdens I will bear But first I need your hand Then forever can begin Everyday I sit and ask myself How did love slip away Something whispers in my ear and says That you are not alone For I am here with you Though you're far away I am ...

Man in The Mirror - Lyrics

" Man In The Mirror " http://www.youtube.com/watch?v=jjq2MWHDxzE Watch this video I'm Gonna Make A Change,                                For Once In My Life It's Gonna Feel Real Good, Gonna Make A Difference Gonna Make It Right . . . As I, Turn Up The Collar On My Favourite Winter Coat This Wind Is Blowin' My Mind I See The Kids In The Street, With Not Enough To Eat Who Am I, To Be Blind? Pretending Not To See Their Needs A Summer's Disregard, A Broken Bottle Top And A One Man's Soul They Follow Each Other On The Wind Ya' Know 'Cause They Got Nowhere To Go That's Why I Want You To Know I'm Starting With The Man In The Mirror I'm Asking Him To Change His Ways And No Message Could Have Been Any Clearer If You Wanna Make The World A Bett...