c icon indicating copy to clipboard operation
c copied to clipboard

Example of c program

Open victor48-ux opened this issue 2 years ago • 3 comments

victor48-ux avatar Jun 29 '23 07:06 victor48-ux

Fixes #406 C program for swapping of two numbers

#include<stdio.h> int main() { double first, second, temp; printf("Enter first number: "); scanf("%lf", &first); printf("Enter second number: "); scanf("%lf", &second);

// value of first is assigned to temp temp = first;

// value of second is assigned to first first = second;

// value of temp (initial value of first) is assigned to second second = temp;

// %.2lf displays number up to 2 decimal points

printf("\nAfter swapping, first number = %.2lf\n", first); printf("After swapping, second number = %.2lf", second); return 0; }

deepak4566 avatar Jul 14 '23 13:07 deepak4566

This swaps the two numbers

deepak4566 avatar Jul 14 '23 13:07 deepak4566

can I work on this issue

HARSHITHASALADI1 avatar Oct 26 '23 16:10 HARSHITHASALADI1