First of all open your blogger dashboard and go to new post tab and click on it then see at the right side you will see a labels tab click on it and you will see- type the name of your page which you want to create in your blog and then click on done tab. After doing this go to your home page and click on layout you will see add a gadget tab click on it and add pages tab.place this gadget where you want to do.then click on edit link- and you will see given tab in your screen- ...
Posts
Palindrome number- A palindromic number is a number that remains the same when its digits are reversed. C++ code - #include <iostream.h> void main() { int n,a,b,rev=0; cout<<"Enter number : "; cin>>n; b=n; while(n>0) { a=n%10; rev=rev*10+a; n=n/10; } cout<<"\nReverse number : "<<rev; if(rev==b) cout<<"\nPalindrome number."; else cout<<"\nNot a Palindrome number."; } OUTPUT - Enter number :164461 Reverse number :164461 palindrome number. click here for more c++ codes. Similar posts- C++ program to find the average. C++ program to convert a length given in feet and inches to centimeters. C++ program to find the reverse of a number. c++ program to swap two numbers using pointers .