print_default_ans.c 605 Bytes
Newer Older
priyank's avatar
priyank committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/**
 * File Name : print_default_ans.c
 */

/** Function: print_default_ans
 * This function gives the output in horizontal way when there is singular direct case
 * Ittake arguments: word of char array
 */


#include "defn.h"
/**
 * Prototypes of the functions in this file with a file scope
 */

extern void resufun();

void print_default_ans(char *word)

   {
     int offset;
     offset = 1; /* This is the offset from feature_value.c file corresponding to singular direct case */

/* This function prints the root,pdgm,priority ,category */
      resufun(word,offset); //introduced arguments
     }