Someone called "invisible worm" dropped these links and message into the comments section of the story Korean News & Information Sites. I'm making the links live here, not knowing just yet whether these sites are any good.]
Base21
http://base21.org/
Korea Times
http://times.hankooki.com/
JoongAng Daily
http://joongangdaily.joins.com/
ZNet Korea Watch
http://www.zmag.org/asiawatch/koreawatch.htm
There are also a number of blogs from Korea. I'm living in Korea now and although I (http://www10.brinkster.com/invisibleworm/) don't focus on Korea on a daily basis I certainly try to keep on top of any major developments. Also check out:
Empty Bottle
http://www.emptybottle.org/index.php
The Magnificant Melting Object
http://meltingobject.blogspot.com/
locrianRhapsody
http://www14.brinkster.com/locrianrhapsody/
Korea Life Blog
http://korealife.blogspot.com/
The Korean Blog List
http://korea.banoffeepie.com/
But variables get one benefit people do not
Posted by: Pompey on January 19, 2004 02:26 AMThis code should compile and run just fine, and you should see no changes in how the program works. So why did we do all of that?
Posted by: Janikin on January 19, 2004 02:26 AMThis will allow us to use a few functions we didn't have access to before. These lines are still a mystery for now, but we'll explain them soon. Now we'll start working within the main function, where favoriteNumber is declared and used. The first thing we need to do is change how we declare the variable. Instead of
Posted by: Polidore on January 19, 2004 02:27 AMWhen a variable is finished with it's work, it does not go into retirement, and it is never mentioned again. Variables simply cease to exist, and the thirty-two bits of data that they held is released, so that some other variable may later use them.
Posted by: Effemia on January 19, 2004 02:28 AMSince the Heap has no definite rules as to where it will create space for you, there must be some way of figuring out where your new space is. And the answer is, simply enough, addressing. When you create new space in the heap to hold your data, you get back an address that tells you where your new space is, so your bits can move in. This address is called a Pointer, and it's really just a hexadecimal number that points to a location in the heap. Since it's really just a number, it can be stored quite nicely into a variable.
Posted by: Maurice on January 19, 2004 02:28 AM