Results 1 to 2 of 2

Thread: The Evolution of a Programmer

  1. #1
    Administrator asylu3's Avatar
    Join Date
    Jun 2000
    Location
    Thailand
    Posts
    3,557


    The Evolution of a Programmer

    The Evolution of a Programmer

    High School/Jr.High

    10 PRINT "HELLO WORLD"
    20 END


    First year in College
    program Hello(input, output)
    begin
    writeln('Hello World')
    end.


    Senior year in College
    (defun hello
    (print
    (cons 'Hello (list 'World))))


    New professional
    #include <stdio.h>
    void main(void)
    {
    char *message[] = {"Hello ", "World"};
    int i;

    for(i = 0; i < 2; ++i)
    printf("%s", message[i]);
    printf("n");
    }


    Seasoned professional
    #include <iostream.h>
    #include <string.h>

    class string
    {
    private:
    int size;
    char *ptr;

    public:
    string() : size(0), ptr(new char('

  2. #2
    Zephyrus
    Guest


    Re: The Evolution of a Programmer

    :laff: สุดๆเลย

Similar Threads

  1. The Evolution of a Programmer
    By Gen0TypE in forum Relax Room
    Replies: 2
    Last Post: 11-03-2008, 04:38 AM
  2. Replies: 1
    Last Post: 29-11-2007, 04:59 PM
  3. Javascript Programmer's Reference (Programmer to Programmer)
    By zeonmx in forum E-Book, Video หรือบทความทั่วไปด้าน Computer
    Replies: 0
    Last Post: 24-09-2007, 03:28 AM
  4. Notable Programmer
    By asylu3 in forum CS CE CPE Community
    Replies: 0
    Last Post: 29-09-2004, 05:53 PM
  5. Web Programmer
    By Anonymous in forum Permanent IT Job
    Replies: 0
    Last Post: 17-08-2004, 12:55 AM

Members who have read this thread : 0

Actions : (View-Readers)

There are no names to display.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •