Search:

Type: Posts; User: voidmainvoid

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    3,454

    Thank you for the explanation.So it is basically...

    Thank you for the explanation.So it is basically passing the address of the first element of the array to the function and then function is able to increment to next element address?..Also, I wrote...
  2. Replies
    5
    Views
    3,454

    Passing Array to a Function

    take a look

    #include <iostream>
    using namespace std;

    void input (int test[5])
    {
    int i;
    for(i=0;i<5;i++)
    {
Results 1 to 2 of 2