(part 21) Han from China answers your C questions

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Nomen Nescio

    (part 21) Han from China answers your C questions

    its urgent.pls help me.

    mona said:
    hi,i urgently need a project including graphics,pointe rs.
    not a major one.
    pls send at "jahanm...@gmai l.com"
    Hey, mona.

    Post full details, and we'll be happy to see what we can do
    for you.

    In the meantime, here's a program that meets the specifications:

    #include <stdio.h>

    int
    main(void)
    {
    /*
    * What we have here is a simple graphics output.
    * We satisfy the requirement for pointers in two ways:
    * (1) we have a graphics pointer (or arrow)
    * (2) the argument to printf() decays to a pointer
    */
    printf(" === \n");
    return 0;
    }



    Yours,
    Han from China

Working...