7 (a) Write a program to input 5 integer numbers and print the total. (b) Declaration below : struct date { i
Posted: Thu Jul 14, 2022 2:10 pm
7
(a) Writea program to input 5 integer numbers and print the total.
(b) Declaration below:
struct date {
int day;
int month;
int year;
};
struct date holiday;
struct date *ptr;
By using pointer of struct date * type, illustrate Memory location for holiday and ptr
(c)
struct date {
int day;
int month;
int year;
};
struct account2 {
int accountNo;
char accountType;
char name[30];
float balance;
struct date transaction;
};
Illustrate Memory space for thedeclaration of account2above
(a) Writea program to input 5 integer numbers and print the total.
(b) Declaration below:
struct date {
int day;
int month;
int year;
};
struct date holiday;
struct date *ptr;
By using pointer of struct date * type, illustrate Memory location for holiday and ptr
(c)
struct date {
int day;
int month;
int year;
};
struct account2 {
int accountNo;
char accountType;
char name[30];
float balance;
struct date transaction;
};
Illustrate Memory space for thedeclaration of account2above