14 lines
128 B
C
14 lines
128 B
C
#include "General.h"
|
|
|
|
void Ex3BinaryTree(BinaryTree * root)
|
|
{
|
|
if (root != NULL)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
void main(void)
|
|
{
|
|
|
|
} |