Tag: Struct

22
May
2017

Problem 85: Product

Create a structure named Product with following two fields- 1. name (string) 2. price (double) Then create…

22
May
2017

Struct Problem 1: 101cproblems

Problem 81: Struct GPA Create a simple structure named Student that holds the following variables- i. id…

21
May
2017

Use Pointer with Struct

code: #include<stdio.h> typedef struct{ int age; char name[20]; double gp; }student; int main() { student s1; student…