Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Leijonamieli

    Newbie: variables in function

    <?php $text= "hmm"; function foo() { var_dump($text); } foo(); ?> How do I access $text? This only prints NULL.
  2. Leijonamieli

    Registers - beginner

    I've been reading online tutorials about Assembly but there's one thing that is still unclear to me. Is there only one piece of each register (AX, BX...)? If so, why aren't other programs affected if they're using the same registers I change in my own program? Like if they're using CX for a loop...
  3. Leijonamieli

    Difference between int and long

    If the size of int is 4 bytes and long is also 4 bytes, what makes long different from int? 1 byte can have 2^8 different values so 4 bytes would be 2^32, but I thought long was 2^64. Or have I missunderstood something...

Part and Inventory Search

Back
Top