programing
Name:
Anonymous
2011-09-09 4:27
i want learn programing but i dont where to start i know html but i dont know where to go from there
any suggestions
Name:
Anonymous
2011-09-09 4:29
That depends on what you want to do exactly.
Name:
Anonymous
2011-09-09 4:34
im retarted so i really have no idea
Name:
Anonymous
2011-09-09 5:03
What do you want to create? Games? Programs? OSs?
In any case:
Read books. Learn C by reading [C Primer Plus] which is the grand-daddy of a LOT of languages.
There are Torrent/Warez sites that have a .pdf if you are a poorfag.
The one thing a programmer needs to have: Determination. If you give up quickly, you should either change your attitude or give up entirely.
Name:
Anonymous
2011-09-09 5:07
Learning C by reading anything other than K&R 2? What heresy is this?
Name:
Anonymous
2011-09-09 5:11
Name:
Anonymous
2011-09-09 5:19
Name:
Anonymous
2011-09-09 5:24
>>5
You can't learn K&R 2's C if you can't program at all, dipshit.
Name:
Anonymous
2011-09-09 5:32
SICP and K&R2, thread over.
Name:
Anonymous
2011-09-09 10:46
Read SICP
Name:
Anonymous
2011-09-09 12:28
Read
Name:
Anonymous
2011-09-09 12:34
R
Name:
Anonymous
2011-09-09 14:16
|
Name:
Anonymous
2011-09-09 14:38
Name:
Anonymous
2011-09-09 15:37
well html really is not programming
Name:
n3n7i
2011-09-10 5:56
<html>
<body>
<script language="javascript">
//--------A script---------//
window.alert('Hello World [onload]');
//-------a procedure---------//
procedure DoAlert(void){
window.alert('Hello World [Procedure on Event]');
}
</script>
<img onmouseover="DoAlert()">
</body>
</html>
Should pop up a messagebox on loading the page, and everytime the mouse goes over the image
...If statements, loops, variables,
Events maybe/probably?