adplus-dvertising
frame-decoration

Question

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

a.

23-11

b.

1123

c.

2311

d.

None of the mentioned

Answer: (c).2311

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?