Showing posts with label int. Show all posts
Showing posts with label int. Show all posts

Monday, 31 March 2014

C Programs | Swapping of two numbers in c

C programs | Swapping of two numbers in c

Source code:-)

#include <stdio.h>

int main()
{
   int x, y, temp;

   printf("Enter the value of x and y\n");
   scanf("%d%d", &x, &y);

   printf("Before Swapping\nx = %d\ny = %d\n",x,y);

   temp = x;
   x    = y;
   y    = temp;

   printf("After Swapping\nx = %d\ny = %d\n",x,y);

   return 0;
}

Output:-)

Enter the value of x and y

3

6

Before swapping 

x=3 

y=6 

After swapping


x=6

y=3

C Program-Find Size of int, float, double and char of System-Syntax-Source Code-Output

 C Program-Find Size of int, float, double and char of System

Syntax of size of Operator:-

 temp = sizeof(operand);
/* Here, temp is a variable of type integer,i.e, sizeof() operator
   returns integer value. */

 

Source Code :-)

/* This program computes the size of variable using sizeof operator.*/ 

#include <stdio.h> 

int main()

int a; 

float b; 

double c; 

char d; 

printf("Size of int: %d bytes\n",sizeof(a)); 

printf("Size of float: %d bytes\n",sizeof(b)); 

printf("Size of double: %d bytes\n",sizeof(c)); 

printf("Size of char: %d byte\n",sizeof(d)); 

return 0; 

}

OUTPUT :-)

Size of int: 4 bytes
Size of float: 4 bytes
Size of double: 8 bytes
Size of char: 1 byte