How to write a C Program to Change Variables in C Programming Language ?
Soultion:/*Changing Variables in C Program*/
#include<stdio.h>
#include<conio.h>
void main () {
int x, y, z;
x = 1;
z = 2;
temp = x;
x = z;
z = temp;
}
Learn To Write A Program. Learn Programming Online. Find Programming Solutions.