Files
seer/tests/stm32f1_blink/include/advanced.h
T
2026-05-17 23:35:22 +07:00

26 lines
372 B
C

#ifndef ADVANCED_H
#define ADVANCED_H
typedef struct {
int age;
char name[32];
} childStruct;
typedef struct {
int age;
char name[32];
childStruct child;
} parentStruct;
typedef struct {
parentStruct dad;
int numberOfMember;
char familyName[32];
parentStruct mom;
} familyStruct;
int factorial(int n);
int fibonacci(int n);
#endif