Open In App

Can we write a print statement within if parentheses?

Improve
Improve
Like Article
Like
Save
Share
Report

If-Else is a decision-making statement, where the result will be either true or false. If the statement accepts boolean values – if the value is true then it will execute the block of statements below it otherwise not. If no curly braces ‘{‘ and ‘}’ is provides after if(condition) then by default if statement will consider the immediately below statement to be inside its block.

Decision-making statements in programming languages decide the direction of the flow of program execution. If is one of such a decision-making statement.

If any printf() or std::cout statement is written at the place of condition within if block then the Output Window will get the output as whatever written at the place of condition, and this condition will be always evaluated as true. So if statement will be executed as a true condition. Below is the illustration of the same:

C++




// C++ program to print a string
// within conditional statement
#include <iostream>
using namespace std;
  
// Driver Code
int main()
{
    // Always evaluated as true
    if (cout << "Welcome to ") {
        cout << "GeeksforGeeks";
    }
    else
        cout << "GFG";
    return 0;
}


Output:

Welcome to GeeksforGeeks

Last Updated : 25 Oct, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads