What is the output of this code 
    #include <stdio.h>    
    #include <stdlib.h>   
    int main ()
    {
        int n, m;
        n = abs(65);
        m = abs(-92);
        printf ("%d", n);
        printf ("%d", m);
        return 0;
    }

Posted on by