Tuesday, July 2, 2013

C Basics

Was wondering about how the iterator over a pointer worked by simply adding 1 in final example of http://en.wikipedia.org/wiki/Struct_(C_programming_language). Answer:

Because pointers in BCPL and B are merely integer indices in the memory array, arithmetic on them is meaningful: if p is the address of a cell, then p+1 is the address of the next cell.
http://plan9.bell-labs.com/who/dmr/chist.html

Monday, April 29, 2013

Java Learning

http://javarevisited.blogspot.com/ - read articles in archives

http://javarticles.com/ - example based articles

Tuesday, April 23, 2013

Java Tutorials

http://www.mkyong.com/webservices/jax-ws/jax-ws-hello-world-example/
-note compile with javac -d, to create directory structure matching package. then execute in parent folder of 'com' java com.mkyong.endpoint.HelloWorldPublisher

Monday, April 22, 2013