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;
}