#include <iostream> #include <string> using namespace std; struct CDAccount { double balance; //余额 double rate; //利息 int term; //存期 }; struct Date { int year; int month; int day; }; struct Person { string name; Date birthday; CDAccount account…
# include <stdio.h> # include <stdlib.h> # include <string.h> # include <malloc.h> //创建一个结构体 typedef struct programmer { int salary; int experience; ]; } Programmer; void OneyearLater(Programmer *); int main () { Programmer p = {,…