rewrite *p++=*q++ in haskell?

I always reject such codes when produced by my students. It is just unreadable. I even do not understand what you are trying to achieve. However, gcc seems it to compile to something like

*p = *(p+1) ; *q = *(q+1)

But for what is the '=' good for?

So rewriting it in Haskell (of any size) is a good idea to actually understand the code. Please, could you do it.

/BR

--
-- Mirko Rahn -- Tel +49-721 608 7504 --
--- http://liinwww.ira.uka.de/~rahn/ ---
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to