Write a C program to interchange the contents of C and D
Write a C program to interchange the contents of C and D
c program to interchange the value of variable Problem Statement : Two numbers are input through the keyboard into two locations C and D. Write a program to interchange the contents of C and D. Answer: /* Interchanging of contents of two variables c & d */ #include #include main() { int c,d,e; clrscr(); printf(“\n Enter the number at location C:”); scanf(“%d”, &c); printf(“\n Enter the number at…
View On WordPress














