#include <stdio.h>
#include <conio.h>
struct kayit{
       int no;
       char * isim;
};
void f(struct kayit x){
     printf(" isim: %s , no: %d",x.isim,x.no);     
}
int main(){
    typedef struct kayit kisi;
    kisi x;
    x.isim = "ali";
    x.no=80;
    f(x);
    kisi y;
    y.isim="veli";
    y.no=90;
    f(y);
    kisi defter[10];
    defter[0].isim="ahmet";
    defter[0].no=2;
    f(defter[0]);
    getch();
}

