1. 776.
    0
    #include <stdio.h>
    2. include <string.h>

    struct student
    {
    int id;
    char name[20];
    float percentage;
    } record;

    int main()
    {

    record.id=1;
    strcpy(record. name, "Raju");
    record. percentage = 86.5;

    printf(" Id is: %d n", record.id);
    printf(" Name is: %s n", record. name);
    printf(" Percentage is: %f n", record. percentage);
    return 0;
    }
    ···
   tümünü göster