Write a program to interchange the value of two variables, say x and y on December 14, 2013 Get link Facebook X Pinterest Email Other Apps #include <stdio.h> void main () { int x, y; printf("Enter Two Numbers:"); scanf("%d %d", &x, &y); printf("\n%d , %d\n\n", x, y); } Comments
Comments
Post a Comment