13 Nisan 2010 Salı

C++ Diziyi Metoda Parametre Olarak Gönderilmesi

//www.ethemsulan.com
#include <cstdlib>
#include <iostream>
using namespace std;
int fonk(int diz[],int buyuk){
    int *n;
    for(int i=0;i<buyuk;i++){
           n=&diz[i];
           
           cout<<n<<' '; 
            }
            cout<<endl;
    }
int main(int argc, char *argv[])
{
    int *m,*k;
    int diz2[5]={1,2,3,4,5};
    fonk(diz2,5);
    m=&diz2[0];
    cout<<m<<endl;
    k=diz2;
    cout<<k<<endl;
    system("PAUSE");
    return EXIT_SUCCESS;
}

Hiç yorum yok:

Yorum Gönder