void LCRS_PrintNodesAtLevel(LCRSNode* Root, int Level)
{  
 
 if( (Root->LeftChild != NULL) && (Level>=0) )
  LCRS_PrintNodesAtLevel(Root->LeftChild, Level-1);
 if( (Root->RightSibling != NULL) && (Level>=0) )
  LCRS_PrintNodesAtLevel(Root->RightSibling, Level); 
 if(Level == 0)
 {
  printf(\"%c\\n\", Root->Data);
  return ;
 }  
 
가능?