DEV Community

Cover image for Swap two integers in 'C' programming
Rushikesh
Rushikesh

Posted on

1 1

Swap two integers in 'C' programming

C program to swap two integers using third variable

#include <stdio.h>
void main() {
int a, b, c;
printf("Enter two integer values for swapping : ");
scanf("%d %d", &a, &b);
printf("A = %d, B = %d\n", a, b);
c = a;
a = b;
b = c;
printf("After swapping :\n");
printf("A = %d \t, B = %d\n", a, b);
printf("===End===\n");
}
view raw swap-new-var.c hosted with ❤ by GitHub

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay