/**/

Email sent, You Won! Scam?

Had you experience receiving emails that you won in lotteries, electronic email raffle draws, yahoo internet promotion, Australian lottery, 2009 Microsoft Award, etc…? It’s happening…i received some emails that i won in lotteries, electronic email draws like of below picture. How come this may happen if i’m not playing lotteries? Huh….amazing! Lot of money hehe :). It also says that you must keep it confidential and contact the agent stated in the email as soon as possible.

lotterry2

lottery3

Data Entry Jobs Online - Is this true or scam???

kuno

It’s September 24, 2009, early in the morning when i seat infront of my PC and nothing much to do just to surf some websites, i found out about “Data Entry Jobs Online”. Getting curious about this so i’ve read it and got interested of what they are offering. Earning thousands of dollars even your at home! Wow great…but you need to register first to have an access in their homepage area to get the job and paying $65 as your registration and the payment can be done through paypal and some other online payment method and even through bank…They their clients testimonials and other modus operandi to attract the interest of people who loves to earn dollars ….

I captured their homepage and it is the above image hehe. I think this is a scam….What do you think??? Comment here ………..

The Pinoy Big Dreamer Academy Season 2

http://www.jhorce.w5c.org
Top 6 scholars Miguel, Van, Cris, Bugoy, Laarni and Liezel
have been practicing nonstop for the Grand Dream Night and are highly anticipating the culminating event. Each employed different means of preparing for their solo performances and believed that they were well-equipped to be the Grand Star Dreamer.

C++ Increment Decrement

Increment and Decrement Operators

Adding or subtracting 1 from a variable is a very common programming practice.  Adding 1 to a variable is called incrementing and subtracting 1 from a variable is called decrementing.

  • increment and decrement operators work only with integer variables — not on floating point variables or literals.

  • the C++ compiler is controlling the execution of the prefix and postfix operators.  You cannot change this order of execution.  For example, the parentheses below will not force an early execution:
    value = (((x–)))* num;   //still decrements x last.

  • one disadvantage of using the increment/decrement operators is that the variable can only be incremented or decremented by the value ONE.  If you need to increment (or decrement) by a larger (or smaller) value, you must use statements like
    m += 2; or amount -= 5;

  • be careful when combining increment and decrement operators inside expressions with logical operators.  If in doubt, don’t use them together.  For example, do NOT use:
    if (( num1 = = 4 ) || ( num2 != ++j))
    (j may not be incremented when (num1 = = 4) is TRUE.)
    Instead, separate the code to avoid this problem:
    ++j;
    if (( num1 = = 4) || (num2 != j))