#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); }
16 15
Previous Question Next Question
Your comments will be displayed only after manual approval.