Write a C Program to find addition and subtraction of two numbers
Here is the C Program to find addition and subtraction of two numbers #include<stdio.h> #include<conio.h> void main() { int a,b; ...
Here is the C Program to find addition and subtraction of two numbers #include<stdio.h> #include<conio.h> void main() { int a,b; ...
Write a C Program to check whether the number enter is positive, negative or zero Here is the C Program to check whether the given number is positive , negative or zero. If…..else if...
Write a C Program to Swap two numbers using third variable Here is the C Program to swap two numbers using third variable. #include<stdio.h> #include<conio.h> int main() { int...
Write a C Program to find whether the number is even or odd Here is the C Program to find whether the number is even or odd. The modulus function is used here. The...