C++ Struct Kullanımına Örnek

 

Merhaba arkadaşlar bu makalemizde  C++ Struct Kullanımına örnek bir uygulama yapacağız. İlk önce konsol projemizi oluşturuyoruz. Struct yapıyı kullanarak personel bilgisini konsol ekranına yazdıracağız.

 


 





Şekil 1



 

cpp_structure.cpp

 

#include <iostream>

using namespace std;

 

struct personnel {

    char pName[30];

    char pSurname[30];

    char pDepartment[30];

    int pId;

   

};

 

int main()

{

    personnel p;

    cout << "Enter Personnel Name (Personel Ismi ): ";

    cin.getline(p.pName, 30);

    cout << "Enter Personnel Surname (Personel Soyad ): ";

    cin >> p.pSurname;

    cout << "Enter Personnel Id No (Personel Id No): ";

    cin >> p.pId;

    cout << "Enter Personnel Department: ";

    cin >> p.pDepartment;

    cout << "Personnel Record (Personel Kayit Bilgisi):" << endl;

    cout << "Name (Ad): " << p.pName << endl;

    cout << "Surname (Ad): " << p.pSurname << endl;

    cout << "Id No (P.No): " << p.pId << endl;

    cout << "Department (Departman): " << p.pDepartment;

    return 0;

 

}

 

Click for details

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...