0
Print with out using a statement
Print-hello rahul with out using a statement that ends with a ;(semi colon)
5 Answers
+ 11
#include <iostream>
using namespace std;
int main() {
if((std::cout << "Hello Rahul!") == 0) {}
}
+ 2
Thanks. . I tried the same inside a while loop... . đ
+ 2
While(printf("hello rahul"))
{
break ;
}