Search:

Type: Posts; User: Jackie Chan

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,760

    kindly can you point me to the FAQ? because the...

    kindly can you point me to the FAQ? because the FAQ of this board only mentions that C File I/O feof() is bad. it says nothing about C++ eof().
  2. Replies
    6
    Views
    1,760

    here it should be enough testing as: while...

    here it should be enough testing as:

    while (studfile)
    {
    //...
    }


    but why studfile.eof() is bad ?
    and is my suggestion better ?
  3. Replies
    3
    Views
    1,697

    i am not in houston, but i would like to try.

    i am not in houston, but i would like to try.
  4. Replies
    1
    Views
    1,256

    int const * const

    int const * const cpi;
    in above line both the pointer and the values are const so how to initialize it?
  5. Replies
    17
    Views
    6,790

    Open Source Software are also attacked by hackers...

    Open Source Software are also attacked by hackers see this latest example.
    This is an assembly language board for fasm assembler written in phpBB.

    Hacked
  6. Replies
    40
    Views
    13,003

    Oops I almost overlooked it. Very Happy...

    Oops I almost overlooked it.
    Very Happy Birthday wishes for indigo0086!!! :)
  7. Replies
    40
    Views
    13,003

    1) Jackie Chan April 7 2) Prelude Nov 11 3)...

    1) Jackie Chan April 7
    2) Prelude Nov 11
    3) Neo1 October 11
    4) brewbuck February 7
    5) ahluka June 7
    6) ping December 15
    7) anon October 25
    8) indigo0086 June 13
    9) Mario F....
  8. Replies
    40
    Views
    13,003

    We do not have enough samples to really benefit...

    We do not have enough samples to really benefit from the paradox. Only persons visiting this board as members should be taken in our experiment.
  9. Replies
    40
    Views
    13,003

    birthday paradox

    I am back because of an interesting thing called Birthday Paradox

    Let's see how many of us share a common birthday.

    I will edit this post to add to the list, just post your replies in this...
  10. Replies
    53
    Views
    5,134

    Thank you zacs7. I am not the real Jackie Chan...

    Thank you zacs7.
    I am not the real Jackie Chan (I know you are kidding). I love him and the movies also.

    Right tool for right job is something that I will always try to remember.
  11. Replies
    53
    Views
    5,134

    Thank you Magos. I am also getting a little...

    Thank you Magos.
    I am also getting a little overwhelmed by the choice and availability and usability of so many programing languages. I will take a break now. Will try to pursue my martial art...
  12. Replies
    53
    Views
    5,134

    Thank you for a detailed well explained answer....

    Thank you for a detailed well explained answer. But I am unable to see the point here. I see no flexibility loss when doing Perl. I want list of file names. Easy. I want them sorted. Easy. I want...
  13. Replies
    53
    Views
    5,134

    Thank you everyone!

    I think I was just being a little ignorant and a little over enthusiastic about simplicity of C language.

    :)
  14. Replies
    53
    Views
    5,134

    :) GTK is ugly. GTK+ is for C++. I can try with...

    :) GTK is ugly. GTK+ is for C++. I can try with WinAPI. But it is very scary as for now.
    :) I can only write CGI using C. may be I will try that too for Web.
    :) I will try to write games using...
  15. Replies
    53
    Views
    5,134

    That said I never noticed speed difference...

    That said I never noticed speed difference between C and Perl either. :)


    Well no such thing as resource lacking though I have 1.5GHz, 512MB,20GB configuration. After huge language base of Perl...
  16. Replies
    53
    Views
    5,134

    Thanks all.

    I think C is faster since it is very low level and that is why it is taking longer to develope something. But may be it will help me learn more. My only worry is people may not be using it any more...
  17. Replies
    53
    Views
    5,134

    C is ssssslooooowing me

    Hi all,
    I am using C on purpose but it is slower than say java to develop code in C. However i think that if I write my code in C it will be the fastest. May be only assembly can beat C in speed. I...
  18. Replies
    1
    Views
    1,638

    I fixed that myself. :)

    I fixed that myself.

    :)
  19. Replies
    1
    Views
    1,638

    Why does it hang?

    #include <stdio.h>

    unsigned int gcd(unsigned int a, unsigned int b) {
    unsigned int t;
    while (b) {
    t = b;
    b = a&#37;b;
    a = t;
    }
    return a;
  20. Replies
    15
    Views
    15,635

    Thank you 39ster, abh!shek, IceDane, laserlight,...

    Thank you 39ster, abh!shek, IceDane, laserlight, manav, matsp and others also who asked more questions to make it more clear.

    :)
  21. Replies
    7
    Views
    1,633

    Linux system has no concept of file name...

    Linux system has no concept of file name extensions so just naming it .txt means nothing. Plus you are also writing a NULL character to file. Which makes it look binary to the OS.
  22. Replies
    15
    Views
    15,635

    single swap for char,short,int,float,double

    #include <stdio.h>

    void swap(void *a, void *b) {
    void *t;
    t = a;
    a = b;
    b = t;
    }

    int main() {
  23. Replies
    5
    Views
    3,309

    This small change in your code should help you: ...

    This small change in your code should help you:


    if (scanf("&#37;i", &iUserGuess) == 0)
    /*if (isdigit(iUserGuess) == 0) */
    {
    printf("Invalid Entry, Not a number!\n");
    }

    :)
Results 1 to 23 of 23