From 3ab3f285da95aa638f67f38f33475c5ac2868049 Mon Sep 17 00:00:00 2001 From: Hizenberg Date: Sat, 3 Feb 2024 10:29:31 +0530 Subject: [PATCH] About Recursive Dependencies --- Recursive_Dependencies/A.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Recursive_Dependencies/A.c diff --git a/Recursive_Dependencies/A.c b/Recursive_Dependencies/A.c new file mode 100644 index 0000000..e8a4a24 --- /dev/null +++ b/Recursive_Dependencies/A.c @@ -0,0 +1,30 @@ +/* + * ===================================================================================== + * + * Filename: A.c + * + * Description: + * + * Version: 1.0 + * Created: 03/02/24 10:24:10 AM IST + * Revision: none + * Compiler: gcc + * + * Author: YOUR NAME (), + * Organization: + * + * ===================================================================================== + */ + + +struct emp_t{ + char name[32]; + unsigned int emp_id; + struct occ_t occ; +}; + +struct occ_t{ + char designation[32]; + unsigned int salary; + struct emp_t boss; +};