Tag: Struct
Create a structure named Product with following two fields- 1. name (string) 2. price (double) Then create…
Problem 81: Struct GPA Create a simple structure named Student that holds the following variables- i. id…
code: #include<stdio.h> typedef struct{ int age; char name[20]; double gp; }student; int main() { student s1; student…
Recent Comments