12 Mart 2010 Cuma

C typedef struct Example

//www.ethemsulan.com
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
     typedef struct personel{
     int sifre;
     char ad[10];
     char soyad[10];
     int yas;
     float maas;
     char cinsiyet[10];        
    }person;
    person p1,p2;
int main(int argc, char *argv[])
{    
    p1.sifre=23;
    strcpy(p1.ad,"Ayse");
    strcpy(p1.soyad,"Okan");
    p1.yas=23;
    p1.maas=3.800;
    strcpy(p1.cinsiyet,"Kiz");
printf("%d %s %s %d %f %s",p1.sifre,p1.ad,p1.soyad,p1.yas,p1.maas,p1.cinsiyet);
    printf("\n\n");
    p2.sifre=24;
    strcpy(p2.ad,"Ethem");
    strcpy(p2.soyad,"VARDARLI");
    p2.yas=24;
    p2.maas=4.600;
    strcpy(p2.cinsiyet,"Erkek");
printf("%d %s %s %d %f %s",p2.sifre,p2.ad,p2.soyad,p2.yas,p2.maas,p2.cinsiyet);
    printf("\n\n");   
  system("PAUSE");	
  return 0;
}

Hiç yorum yok:

Yorum Gönder