Search:

Type: Posts; User: Zachary May

Search: Search took 0.00 seconds.

  1. Nope. We are learning Strings and Arrays right...

    Nope. We are learning Strings and Arrays right now, but for the purpose of this exercise, we are not allowed to use them. And that is what im having the main problem with. If I could use arrays I...
  2. I don't have any experience in arrays yet for...

    I don't have any experience in arrays yet for this project so I can't use this.



    int combination(int a,int pos,int count)
    {
    int d;
    if (count>0)
    {
  3. I am having a terrible time figuring out how to...

    I am having a terrible time figuring out how to start this.


    int combination(int a,int count)
    {
    if (count <=1){
    printf("%d",a);
    return a;
    combination(a+1,count-1);
    printf("%d",a);
  4. Okay, I am understand how to go about the...

    Okay, I am understand how to go about the solution, it is clearer to see with the answers being backwards. I am going to write the program part of this later on and i will respond back if I have...
  5. Using recursive functions (I am beginner at C programming)

    Okay so the job of this program is to have a robot take steps of 1,2,3 meter in a amount of steps asked by the user. After the user inputs a value, the program will tell them that the robot can walk...
Results 1 to 5 of 5