Search:

Type: Posts; User: astrodude15

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,175

    thanks

    thanks
  2. Replies
    3
    Views
    1,137

    That link provided doesnt go to a thread

    That link provided doesnt go to a thread
  3. Replies
    3
    Views
    1,137

    Segment woes

    //TJ Wright 11 3
    #include <stdio.h>
    int main ()
    {
    int m, count=0,n[30];

    printf("Enter the numbers, one per line");

    for(m=1;m<=20;m++)
    {
  4. Replies
    2
    Views
    1,175

    Segment woes

    //TJ Wright 11 3
    #include <stdio.h>
    int main ()
    {
    int m, count=0,n[30];

    printf("Enter the numbers, one per line");

    for(m=1;m<=20;m++)
    {
  5. Replies
    11
    Views
    1,417

    Thank you all very much for your help and sharing...

    Thank you all very much for your help and sharing your knowledge!
  6. Replies
    11
    Views
    1,417

    I could use break; instead of the goto, and it...

    I could use break; instead of the goto, and it would work fine.
  7. Replies
    11
    Views
    1,417

    "this steps off the end of the array" What...

    "this steps off the end of the array"

    What does that mean?
  8. Replies
    11
    Views
    1,417

    Problem with a sequence

    Teh first term is 1, the second term is 2, and for all n>=3 the nth term is equal to term (n-1) plus term n/2, where n/2 is rounded down.

    Program should prompt for n, and then display the nth term...
  9. Replies
    4
    Views
    1,083

    -1 2 3 -3 3141.60 2827.44 3455.76

    -1 2 3 -3
    3141.60
    2827.44
    3455.76 <****first number wrong.
    4398.24
    3455.76

    should be:

    3141.60
  10. Replies
    4
    Views
    1,083

    A cylindrical water Tank?

    //Volume=100*3.1416*(height of water)
    #include <stdio.h>
    #define factor 314.16
    void main (void)
    {
    int o,h,m,k,y,w=1,r;

    float now[34],ch[56],volume1,volume2[40];

    while(w<=3)
  11. Replies
    8
    Views
    1,733

    We have always been taught, when writing...

    We have always been taught, when writing programs, to use:



    #include <stdio.h>
    void main (void)
    {

    }
  12. Replies
    8
    Views
    1,733

    Coding Woes: Program on the Fritz

    #include <stdio.h>
    #include <math.h>
    void main (void)
    {
    int m,k,num,x[50];
    for(m=1;m<=6;m++)
    {

    printf("Enter the number of numbers to be entered\n");
Results 1 to 12 of 13