1.

What will be the output of the following C code?
#include <stdio.h>
void fun(int m, int n)
{
int temp = m;
m = n;
n = temp;
}
void main()
{
int s = 16, t = 15;
fun(s, t);
printf("%d %d n", s, t);
}

A. 16 16
B. 15 15
C. 15 16
D. 16 15
E. Compilation Error
Answer» E. Compilation Error


Discussion

No Comment Found