C PROGARAMING | SWAPPING

 #include <stdio.h>

#include <stdlib.h>


int main()

{

    int a=10,b=39,temp;

    temp=a;

    a=b;

    b=temp;

    printf("a:%d b:%d",a,b);

    return 0;

}



Comments