C Tutorial/Structure/Structure

Материал из C\C++ эксперт
Версия от 10:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Define a structure for recording students

#include <stdio.h>
struct student
{
    char *name;
    float marks;
}   student1, student2;
int main ( )
{
    struct student student3;
    student1.name = "Tom";
    student2.marks = 99.9;
    printf (" Name is %s \n", student1.name);
    printf (" Marks are %f \n", student2.marks);
}
Name is Tom
 Marks are 99.900002

Introduction Structures

Combine variables into a single package called a structure.

Structures are declared by using the struct keyword.


struct sampleName
{
    int a;
    char b;
}