Thread: C- Program which is to be written?

  1. #1
    Registered User
    Join Date
    Feb 2002
    Posts
    2

    Question C- Program which is to be written?

    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

  2. #2
    Registered User Nutshell's Avatar
    Join Date
    Jan 2002
    Posts
    1,020
    dun be mean hes only a junior member.

  3. #3
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >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.
    Code:
    #include <stdio.h>
    #include <stdlib.h>
    
    int main( void )
    {
      printf( "Hello World!\n" );
     
      return EXIT_SUCCESS;
    }
    -Prelude
    My best code is written with the delete key.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. large program code ,please help
    By Ash1981 in forum C Programming
    Replies: 14
    Last Post: 01-30-2006, 06:16 AM
  2. Inserting text into MDI program
    By Rutabega in forum Windows Programming
    Replies: 0
    Last Post: 12-23-2005, 11:25 AM
  3. Dikumud
    By maxorator in forum C++ Programming
    Replies: 1
    Last Post: 10-01-2005, 06:39 AM
  4. matrix program written in c++
    By boa_321 in forum C++ Programming
    Replies: 2
    Last Post: 02-03-2003, 09:33 AM
  5. redirection program help needed??
    By Unregistered in forum Linux Programming
    Replies: 0
    Last Post: 04-17-2002, 05:50 AM