Search:

Type: Posts; User: zer0_r00t

Search: Search took 0.00 seconds.

  1. Replies
    12
    Views
    1,609

    ok at least tell me what does *(y+i) mean if...

    ok at least tell me what does *(y+i) mean if y[0]=0 and i=2
    Clues plzzzz
  2. Replies
    12
    Views
    1,609

    I'm lost man :(

    I'm lost man :(
  3. Replies
    12
    Views
    1,609

    if *y = y[0] why does this give me 1 instead of...

    if *y = y[0] why does this give me 1 instead of 2:



    #include <stdio.h>


    int main()
    {
    int x[5] = {4,3,1,2,0};
  4. Replies
    12
    Views
    1,609

    the full code: #include int...

    the full code:



    #include <stdio.h>


    int main()
    {
    int x[] = {4,3,1,2,0};
  5. omg thank you so much!

    omg thank you so much!
  6. Replies
    12
    Views
    1,609

    test on monday plzzzzz help!

    x[i] = *(x+*(y+1))


    ^^^ what does this mean?
  7. Tried. Still gives me the output of x instead of...

    Tried. Still gives me the output of x instead of result
  8. Edit: /* A simple program in which the user...

    Edit:


    /* A simple program in which the user picks 2 numbers and does mathematical operation ( +, -, * or / ) */


    #include <stdio.h>
    #include <stdlib.h>
  9. OK forget using char. Even if I use int, it...

    OK forget using char.
    Even if I use int, it ALWAYS gives me the the value of x as the output


    /* A simple program in which the user picks 2 numbers and does mathematical operation ( +, -, * or /...
  10. simple calculator: what's wrong with this code?

    Pls help
    Thank you



    /* A simple program in which the user picks 2 numbers and does mathematical operation ( +, -, * or / ) */


    #include <stdio.h>
    #include <stdlib.h>
  11. Replies
    5
    Views
    5,026

    Errors: mingw32-gcc.exe -c C:\c\gender.c -o...

    Errors:

    mingw32-gcc.exe -c C:\c\gender.c -o C:\c\gender.oC:\c\gender.c: In function 'main':
    C:\c\gender.c:9:5: error: too many arguments to function 'getchar'
    In file included from...
  12. Replies
    5
    Views
    5,026

    gender program help

    Hello. Noob here. Started programming yesterday. LEL
    How do I write a program that'll interpret "M" and "F" inputs and print a "you're a guy" or "you're a gurl" message?



    #include <stdio.h>...
Results 1 to 12 of 13