#include <stdio.h> void count(int m, int n) { printf("%d\n", m); } void main() { int i = 12, j = 11; count(i, j); printf("%d %d\n", i, j); }
1212 11
Previous Question Next Question
Your comments will be displayed only after manual approval.