C PROGARAMING | SWAPPING Get link Facebook X Pinterest Email Other Apps September 15, 2022 #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;} Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment