Search:

Type: Posts; User: Big_0_72

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    3,275

    I mean declaring and calling a pointer under the...

    I mean declaring and calling a pointer under the void find_closest_flight(int desired_time, int *departure_time, int *arrival_time) seen in my example.
  2. Replies
    3
    Views
    3,275

    Using pointers

    #include <stdio.h>
    #include <stdlib.h>

    void find_closest_flight(int desired_time, int *departure_time, int *arrival_time);




    int main()
    {
Results 1 to 2 of 2