Integer Data Type in C
Get Certified in C Programming and Take Your Skills to the Next Level
Program 1
// Program to show int dta type facts
#include<stdio.h>
#include<conio.h>
int main()
{
system("cls");
int a,b;
printf("Enter Two Number");
scanf("%d%d",&a,&b);
printf("Before Swaping %d %d ",a,b);
a=a+b;
b=a-b;
a=a-b;
printf("\nAfter Swaping %d %d ",a,b);
return 0;
}
Your 15 seconds will encourage us to work even harder
Please share your happy experience on Google

