Write a C program to enter and maintain a family tree. Start with yourself as the rrot and create upto "n"levels, where n is to be entered as an input?
![]()
Plz write the entire program; If possible.
Anupam
This is a discussion on C- Program which is to be written? within the C Programming forums, part of the General Programming Boards category; Write a C program to enter and maintain a family tree. Start with yourself as the rrot and create upto ...
Write a C program to enter and maintain a family tree. Start with yourself as the rrot and create upto "n"levels, where n is to be entered as an input?
![]()
Plz write the entire program; If possible.
Anupam
>Plz write the entire program; If possible.
I'm sorry, I didn't realize that programming is an inconvenience to you. We'll all pool our skills and write your program with all due haste.
Here's what we managed to come up with, it works perfectly and has all of the requirements that you asked for.
-PreludeCode:#include <stdio.h> #include <stdlib.h> int main( void ) { printf( "Hello World!\n" ); return EXIT_SUCCESS; }
My best code is written with the delete key.