

InterviewSolution
Saved Bookmarks
1. |
Please tell me source code for swapping number |
Answer» int main() { int x, y; printf("Enter Value of x "); scanf("%d", &x); printf("\\nEnter Value of y "); scanf("%d", &y); swap(&x, &y); printf("\\nAfter Swapping: x = %d, y = %d", x, y); return 0; } | |