u/Electronic_Click_470

Forbidden planet stock levels

Hi guys I'm heading doen to london on the 21st to see the pop up shop at forbidden planet. I'm a bit worried that a lot things may be out of stock because its the last day of the pop up. Does anyone know whether the stock is going to be replenished day by day or should I aim to get there early in the morning? Unfortunately i couldn't get tickets to meet Brandon at 14:30 :/

reddit.com
u/Electronic_Click_470 — 2 days ago
▲ 2 r/cs50

Credit Credit Credit

Hello hello. On my 2nd day of doing cs50 while my uni has finished for the summer, and I'm stuck on credit :/

In short I can get my code to print each digit of the credit number individually using a loop but I can't figure out how to store each output as a variable for later use.

long cred = get_long("Number? ");

long test = cred;

while (test > 0)
{
    long digit = test % 10;
    test /= 10;
    printf("%li\n", digit);
}

Ideally instead of printing the digit on line 9, I'd like to be able to set it to a new variable on each loop. Is this possible?, and if so, how could I do that?

reddit.com
u/Electronic_Click_470 — 3 days ago