Struct Problem 1: 101cproblems

Problem 81: Struct GPA

Create a simple structure named Student that holds the following variables-
i. id (integer)
ii. cgpa (float)
iii. name (string)
Now create an instance of that structure named s1 and scan the values from the user. Finally print the id, cgpa and name which user entered.

code:

#include<stdio.h>
typedef union
{
    char pokarname[500];
    double pokarsize;
    int pokarage;
} poka;

typedef struct
{
    int id;
    float cgpa;
    char name[30];
    poka Bee;
    char btype;
} Student;

void inputShow(Student *spp)
{
    printf("Enter ID: ");
    scanf(" %d",&spp->id);
    printf("Enter CGPA: ");
    scanf(" %f",&spp->cgpa);
    printf("Enter NAMe: ");
    scanf(" %s",&spp->name);

    printf("Tell us about BUGS you like\n Big 'B' Small 'S' White 'W': ");
    scanf(" %c",&spp->btype);

    if(spp->btype=='B')
    {
        printf("Pokar Name: ");
        scanf(" %[^\n]",&spp->Bee.pokarname);
    }
    else if(spp->btype=='S')
    {
        printf("Pokar Age: ");
        scanf("%d",&spp->Bee.pokarage);
    }
    else if(spp->btype=='W')
    {
        printf("Pokar size");
        scanf("%d",&spp->Bee.pokarsize);
    }
}

void printShow(Student sp)
{
    printf("\n");
    printf("ID=%d\n",sp.id);
    printf("CGPA=%.2f\n",sp.cgpa);
    printf("Name=%s\n",sp.name);

      if(sp.btype=='B')
    {
        printf("Pokar Name: %s\n",sp.Bee.pokarname);
    }
    else if(sp.btype=='S')
    {
        printf("Pokar Age: %d\n",sp.Bee.pokarage);
    }
    else if(sp.btype=='W')
    {
        printf("Pokar size: %d\n",sp.Bee.pokarsize);
    }
}

int main()
{
    Student s1;

    inputShow(&s1);
    printShow(s1);


    return 0;
}

Source:http://101cproblems.com/problem-81/

Another approach:

#include<stdio.h>
struct as{
int id;
char title[15];
char author[15];
};

int main()
{
struct as a[2];
int i;
for(i=0;i<2;i++)
{
    printf("enter id: ");
    scanf("%d",&a[i].id);
    printf("Enter title: ");
    scanf("%s",a[i].title);
    printf("enter author name: \n");
    scanf("%s",a[i].author);
    printf("__________ For Book: %d ________\n",i+1);
    printf("id: %d\n title: %s\n author: %s\n",a[i].id,a[i].title,a[i].author);
}



    return 0;
}

 

It would be a great help, if you support by sharing :)
Author: zakilive

Leave a Reply

Your email address will not be published. Required fields are marked *