Introduction
C Program to Swap Values of Two Variables. I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
C Program to Swap Values of Two Variables. I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
#include<stdio.h>
int main()
{
int num1;
int num2;
int temp;
printf("Type value of number 1 : ");
scanf("%d",&num1);
printf("\nType value of number 2 : ");
scanf("%d",&num2);
temp = num1;
num1 = num2;
num2 = temp;
printf("After swapping values \n");
printf("number 1 : %d",num1);
printf("\nnumber 2 : %d",num2);
return 0;
}
Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …
C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …