Thursday, February 6, 2014

Easily Get Payoneer Master Card in Pakistan


Payoneer is a payout company founded in 2005. Payoneer is a registered Member Service Provider (MSP) of Master Card. The Company is headquartered in  New York USA.

Important Features

  • Transfer funds to Prepaid Debit Master cards
  • Send bank transfers to more than 200 countries
  • Get started with a quick, simple and secure integration. 
  • Receive funds from U.S. based companies
  • Withdraw funds to your local bank account.
  • Spend funds with a Prepaid Debit MasterCard® card.

How to apply for free delievery in Pakistan

  • Click here to visit Payoneer website www.payoneer.com.
  • Fill the form by providing your correct address so that you can receive you master card.
  • You will receive your Payoneer Master Card within 20 or 30 days based on your location.

 

Tuesday, February 4, 2014

C Program to calculate points based on Grade using the Switch statement

#inlcude<stdio.h>
int main()
{
  char grade;
  int points;
printf("\nEnter a grade(A-F):");
scanf("%c",&grade);
 switch(grade)
{
case 'A':
          points=5;
          printf("\nThe grade is A.");
         break;
case 'B':
     points=4;
     printf("\nThe grade is B.");
     break;
case 'C':
points=3;
     printf("\nThe grade is C.");
     break;
case 'D':
points=2;
     printf("\nThe grade is D.");
     break;
case 'E':
points=1;
     printf("\nThe grade is E.");
     break;
case 'F':
points=0;
     printf("\nThe grade is invalid.");
     break;
}
if(points>0)
 printf("\nPassed ,points earned=%d\n",points);
else
  printf("\nFailed ,no points earned\n");
return 0;
}







Wednesday, January 29, 2014

How to add SEO friendly Title to Blogger

In order to higher ranking in search engines the Page title plays an important role in your blog.
Below figure is an example



 Follow below steps:
  •  Go to template then click Edit HTML.
  • Press Ctrl+F and find this code  " 
<title<data:blog.pageTitle/></title>".
  •  Replace the above code with the following codes: 
 <b:if cond='data:blog.pageType == &quot;index&quot;'>
  <title><data:blog.pageTitle/></title>
  <b:else/>
 <title><data:blog.pageName/> All about blogging</title>
  </b:if>
  • Replace the blue text by your blog's Name.
  • Now you have done.




 

    Tuesday, January 28, 2014

    How to use smileys and emotions on facebook

    Facebook Smileys
    Smiley Expressions Code
    smile :-) and :)
    heart <3 td="">
    face :putnam:
    devil 3:)
    glasses 8-) and 8)
    kiss :-* and :*
    tongue :P and :-p
    grin :D
    gasp :O
    frown :-(and :(
    upset >:( and >:-(
    curly lips :3
    confused o.O andO.o

    Blogging

    Blogging Before discussing about blogging i am writing here what is blog. 

    Blog 

    A blog  is a discussion or informational site published on the world wide web (www) and consisting of discrete entries ("posts") typically displayed in reverse chronological order (the most recent post appears first). Until 2009 blogs were usually the work of a single individual, occasionally of a small group, and often covered a single subject. More recently "multi-author blogs" (MABs) have developed, with posts written by large numbers of authors and professionally edited.
    A majority are interactive, allowing visitors to leave comments and even message each other via GUI widgets on the blogs, and it is this interactivity that distinguishes them from other static websites. In that sense, blogging can be seen as a form of social networking. Indeed, bloggers do not only produce content to post on their blogs, but also build social relations with their readers and other bloggers.

    Many blogs provide commentary on a particular subject; others function as more personal online diaries others function more as online brand advertising of a particular individual or company. A typical blog combines text, images, and links to other blogs, Web pages, and other media related to its topic. The ability of readers to leave comments in an interactive format is an important contribution to the popularity of many blogs. Most blogs are primarily textual. 

    Blogging

    Monday, January 27, 2014

    Google Adsense


    Google Adsense

    Google Adsense

    Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google, and they can generate revenue on either a per click or per impression basis.

    Why adsense

    Many websites use AdSense to monetize their content; it is the most popular advertising network. AdSense has been particularly important for delivering advertising revenue to small websites that do not have the resources for developing advertising sales programs and sales people to generate revenue with. To fill a website with advertisements that are relevant to the topics discussed, webmasters place a brief HTML code on the websites' pages. Websites that are content-rich have been very successful with this advertising program, as noted in a number of publisher case studies on the AdSense website. AdSense publishers may only place three ad units per page.

    How to run graphics program using turbo C

    How to run graphics program using turbo C How to run graphics program using turbo C

    Follow the below steps :

    • Go to that drive where your Turbo C folder reside.
    • Now open TC folder.
    • Now you will see a folder with name BGI
    • Open BGI folder .Find "EGAVGA.BGI" & CGA.BGI 
    • Now paste these two files into Bin Folder. 
    • Open Turbo C and write your desired graphics program.
    • Now click on option.
    • Then click on linker ,then include graphic.
    • Now compile and run ,graphic will run.