Search:

Type: Posts; User: dickerrick

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,159

    Point 3 can be written: if (average < 60)...

    Point 3 can be written:


    if (average < 60) printf("grade is 'F'\n.");
    else if (average < 70) printf ("grade is 'D'.\n");
    else if (average < 80) printf("grade is 'C'.\n");
    else if (average...
  2. Replies
    3
    Views
    1,518

    Ok, Ok... :D Homework done ! Thanks !

    Ok, Ok... :D Homework done !

    Thanks !
  3. Replies
    3
    Views
    1,518

    controlling two threads

    I'm programming in C and using Visual Studio++. The question is about the following code:
    How can I stop the second thread within the first thread ?

    I don't know if this is the right way to...
Results 1 to 3 of 3