13 Mart 2010 Cumartesi

C ile Struct Örneği

//www.ethemsulan.com
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
    struct person{
    int sicil;
    char ad[10];
    char soyad[10];
    int yas;
    float brut;
    int cins;       
    }p1;
int main(int argc, char *argv[])
{
    p1.sicil=12;
    strcpy(p1.ad,"Ethem");
    strcpy(p1.soyad,"SULAN");
    p1.yas=34;
    p1.brut=3500.50;
    p1.cins=1;
printf("\n%d %s %s %d %f %d",p1.sicil,p1.ad,p1.soyad,p1.yas,p1.brut,p1.cins);
    printf("\n");
  system("PAUSE");	
  return 0;
}

Hiç yorum yok:

Yorum Gönder