This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

25 lines
534 B
C
Executable File

/*
4.Даны целочисленные переменные А и В. Задать их значения с клавиатуры. Поменять значения в переменных А и В без дополнительных переменных.
*/
#include <stdio.h>
void swap(int *a, int *b) {
*a += *b;
*b = *a - *b;
*a -= *b;
}
int main() {
int a, b;
printf("Enter 2 digits: ");
scanf("%d %d", &a, &b);
swap(&a, &b);
printf("%d %d", a ,b);
return 0;
}