✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
void c(int x, int y) { int t; t = y; y = x; x = t; }int main() { int x = 5, y = 6; c(x, y); printf("%d %d",x, y); return 0;}