Search:

Type: Posts; User: sub_slack

Search: Search took 0.00 seconds.

  1. link...

    link
    this explains a little where and when mico$soft stole what :D
  2. Replies
    6
    Views
    1,237

    ok, thanks, i understand it now :)

    ok, thanks, i understand it now :)
  3. Replies
    6
    Views
    1,237

    yes, thanks , it helps, but i'm still a little...

    yes, thanks , it helps, but i'm still a little confused ,how should i understand

    if(array[i])
    that means if value of array[i] is true ,right?
  4. Replies
    6
    Views
    1,237

    what does this mean

    in some program i saw this line

    result += array[i] ? array[i] : 90;
    i was wonderind what does this mean. hope you can help.
  5. Replies
    15
    Views
    3,005

    > if (fgets(word, sizeof word, stdin) != NULL) ...

    > if (fgets(word, sizeof word, stdin) != NULL)
    > if(fgets(word, sizeof(word), stdin, != NULL)

    compiles great both ways.

    can someone explain why sizeof(word) and sizeof word are the same...
  6. Replies
    5
    Views
    2,822

    what is MainCL , i never heard of it. is it just...

    what is MainCL , i never heard of it.
    is it just like int main()?
    can someone please explaine?
  7. Replies
    3
    Views
    2,206

    you have a mistake in your code else if(c...

    you have a mistake in your code



    else if(c >=3600 && c<= 86400) {
    x = c/3600;
    d = c%3600;
    f = d / 60;
    a = d % f; // this should be a = d % 60;
    printf("%d Hours %d...
  8. Replies
    3
    Views
    1,258

    thanks a lot , it works fine now:D

    thanks a lot , it works fine now:D
  9. Replies
    3
    Views
    1,258

    strcat program

    i read C Programming Language chapter 2-2.8 and wrote a strcat program


    #include <stdio.h>

    void cat(char s[],char t[]);

    main()
    {
Results 1 to 9 of 9