how to write if Statement Example Program in C++ ,CPP
Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about this how to write if Statement Example Program in C++ ,CPP.So let’s go to our topic The basic Syntax of if statement is: if(test_expression) { statement 1; statement 2; … } include<iostream> #include<conio.h> using namespace std; int main() { // … Read more