Search:

Type: Posts; User: Mr.who

Search: Search took 0.00 seconds.

  1. Thread: pointers

    by Mr.who
    Replies
    2
    Views
    1,612

    pointers

    Given the following declarations int i =3, j, *iptr;
    the following statement is intended to assign value of i to j
    j = *iptr;
    however this will not work unless preceded by another statment.
    write...
  2. can someone solve this for me I am having diffivulty in solving this

    write a nested if else statment for the following

    output an approproate message about the persons ability to drive a car outcome

    ask for the person age
    if person is under 16 print "you may not...
  3. Okay when I changed int check(int num, int...

    Okay when I changed

    int check(int num, int array[4][4]) {

    to :

    int check(int num)
    int check (int array[4][4])

    it didn't work
  4. soo should i define them seperatly if sooo could...

    soo should i define them seperatly
    if sooo could please show me how to
    iam kindda new to programming.
  5. Please help me i dont know why this doesnt work

    #include <stdio.h>
    #include<time.h>
    void array();

    int main()
    {
    printf("CAN SOME ONE TELL ME WHY THIS DOESNT WORK\n");
    printf("AND IF YOU COULD SHOW ME THE CORRECTION");
    array();...
  6. Thread: slider game

    by Mr.who
    Replies
    4
    Views
    3,589

    you have to arrange the numbers in ascending...

    you have to arrange the numbers in ascending order by moving the numbers around.

    i basically want to achieve this:
    How to do a sliding puzzle - YouTube

    i want to know how to assign keys to...
  7. Thread: slider game

    by Mr.who
    Replies
    4
    Views
    3,589

    slider game

    i have to create a slider game i have made the part where you create non-repeating numbers each time you run the game:




    #include <stdio.h>
    #include<time.h>

    int check(int num, int...
Results 1 to 7 of 7