Search:

Type: Posts; User: Anna Lane

Search: Search took 0.01 seconds.

  1. Thank you Salem!

    Thank you Salem!
  2. Thanks for your response but I'm a baby in C...

    Thanks for your response but I'm a baby in C Programming -- please explain your reponse in laymans terms.:o
  3. How to determine and print smallest and largest values

    I need help on how to write a program to determine and print the smallest and largest values contained in 99-element floating-point array w.

    This is what I have thus far:
    #include <stdio.h>
    ...
  4. Help to copy Array a into first portion of array b

    I need help with how to copy array a into first portion of array b. Assume double a[11], b[34].

    This is what I have so far:

    double i = 0;

    a[11];

    b[34 (sizeof (a) ) ];
  5. Replies
    3
    Views
    2,004

    Code re Prime Numbers

    Thank you Juganoo for your help! I appreciate you!
  6. Replies
    3
    Views
    2,004

    Help with program code re prime numbers

    Please help! I'm trying to write a function that determines if a number is prime to use this function to determine and prints all prime numbers between 1 and 100. This is what I have so far:
    ...
  7. Replies
    2
    Views
    1,480

    Please help me - I found my old message re...

    Please help me - I found my old message re temperature conversion but was unable to use it or move it. Can you help me with the previously submitted code?
  8. Replies
    2
    Views
    1,480

    Program to Convert Temperature

    I'm new to this -- I couldn't find my original thread. so here goes:
    This is the code I've written. I need the user to be able to make a choice of Celsius or Fahrenheit. Only one temperature at a...
  9. Replies
    2
    Views
    2,601

    Code to convert temperature

    //How to convert temperature from fahrenheit to celsius or vice versa




    #include <stdio.h>

    int main()

    {
  10. Replies
    10
    Views
    1,721

    Multiplication Code

    //I need the multiplication table in rows and columns with answers. What's missing?


    /*

    #include <stdio.h>

    int main()
    {
    int num, product;
  11. Replies
    10
    Views
    1,721

    Multiplication Code

    I'm new at this -- I've tried putting the rows and columns in printf but I continue to get errors; plus I'm not getting correct answers for my multiplication table. What am I doing wrong?:confused:
  12. Replies
    10
    Views
    1,721

    Multiplication Code

    Thanks for your help -- but I need the mulitiplication table displayed in rows and columns.
  13. Replies
    10
    Views
    1,721

    Multiplication Code

    CODE
    //multiplication table for the number 0<=10


    #include <stdio.h>
    int main()

    int num, product;

    for( num = 0; num<=10: num++ ) {
  14. Replies
    10
    Views
    1,721

    Correct code for multiplication table

    //please provide code for multiplication table
Results 1 to 14 of 15