Search:

Type: Posts; User: tapti

Search: Search took 0.00 seconds.

  1. Thanks, I get it now.

    Thanks, I get it now.
  2. Warning : returns address of a local variable YET correct output

    This problem was suggested to me by a friend.
    The code is -


    /* Returning a pointer to an out of scope variable */

    # include <stdio.h>

    int* fun(){
    int k = 35;
  3. Replies
    3
    Views
    1,201

    How comfortable are you with data structures? If...

    How comfortable are you with data structures? If you are just starting out with programming, I'd suggest you go the easy (and limited) way of using an array of structures. I know, this will impose a...
  4. Replies
    12
    Views
    2,653

    Thank you everyone for your replies. It really...

    Thank you everyone for your replies. It really helped me a lot.
  5. Replies
    1
    Views
    2,565

    Think about what happens when you try to store a...

    Think about what happens when you try to store a value larger than the maximum value for that type. Like storing 256 in an unsigned char. Try to come up with something that will incorporate that...
  6. Thread: Help with HTML

    by tapti
    Replies
    30
    Views
    3,913

    remove source = source+buffer; and put in...

    remove source = source+buffer; and put in
    strcat(source, buffer);

    also put a semicolon at the end of close(sock);

    It would help if you learn the C language first. '+' operators does arithmetic...
  7. Replies
    12
    Views
    2,653

    Thanks for all the replies. I did some reading...

    Thanks for all the replies. I did some reading from the net also, on static and dynamic libraries (they are .dll on windows and .so on linux, am I right?) I've understood the following, please...
  8. Replies
    12
    Views
    2,653

    Umm ... all I get is the commands, which I...

    Umm ... all I get is the commands, which I already know from college or from the man pages. I am looking for things like what exactly happens when I enter gcc -o program myprogram.c. I know object...
  9. Replies
    12
    Views
    2,653

    Compile and Link tutorials

    Hello everyone! I have been using C/C++ with an IDE for a year now, but I wish to learn the ins and outs of the entire compiling and linking process for a compiler... maybe gcc. Does anyone have a...
Results 1 to 9 of 9