int *retMalloc()
{
    int *mal = (int *)malloc(10);
    return mal;
}

int retVal()
{
    int value = 10;
    return value;
}