The output of the following code is 123 Genesis.I could not get it how?
Code:
int fun(int num)
    { 
        return printf(" %d ", num); 
    }

    void main()
    {
        printf(" Genesis ", fun(123), " & Genesis");
    }