fork download
  1. #include<stdio.h>
  2. #include<locale.h>
  3.  
  4. int main(void)
  5. {
  6. setlocale(LC_ALL,"portuguese");
  7. int x , y, troca_var;
  8.  
  9. printf("Por favor,digite o valor das variáveis x e y: \n");
  10. scanf("%i%i",&x,&y);
  11.  
  12. troca_var = x;
  13. x = y;
  14. y = troca_var;
  15.  
  16. printf("%i\t%i",x,y);
  17.  
  18. return 0;
  19.  
  20. }
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
Por favor,digite o valor das variáveis x e y: 
32765	-739725392