Code to UML Converter
/* Tool for converting code into a UML diagram. */
/* Enter a function to generate its UML diagram. */
int C_function(void)
{
/* C code */
if (condition)
{
statement;
}
else if (condition)
{
statement;
}
else
{
statement;
}
while (condition)
{
function();
}
return integer;
}