i' m not really good in making program but i'd �ike to learn about it,
how can i start?
thank
|
|
0
|
|
|
|
Reply
|
server700 (4)
|
1/19/2006 1:25:28 PM |
|
GasGas wrote
(in article <crMzf.135526$65.3823559@twister1.libero.it>):
> i' m not really good in making program but i'd �ike to learn about it,
> how can i start?
> thank
#include <stdio.h>
int main(void)
{
printf("Hello World\n");
return 0;
}
Save as prog1.c
$ gcc -Wall -O2 -ansi prog1.c -o prog1
$ ./prog1
Enjoy...
--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw
How 'bout them Horns?
|
|
0
|
|
|
|
Reply
|
randyhoward (3272)
|
1/19/2006 1:51:01 PM
|
|
GasGas wrote:
> i' m not really good in making program but i'd �ike to learn about it, how
> can i start?
Learn to write the HTML that supports your web browser. (Use View Source to
see some.)
Then learn to write JavaScript programs inside that HTML, for simple
effects.
--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!
|
|
0
|
|
|
|
Reply
|
phlipcpp (2479)
|
1/19/2006 2:52:20 PM
|
|