how to write if..else Statement Example Program In C++
Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to write if..else Statement Example Program In C++.So let’s go to our topic #include<iostream> #include<conio.h> using namespace std; int main() { // Variable Declaration int a; // Get Input Value cout<<“Enter the Number :”; cin>>a; //If Condition Check if(a … Read more