+ 1
Can we print a statement with out using printf/cout statement also not using ; in c/c++ or any other programming language ?
If possible then how ?
4 Réponses
+ 5
There are multiple ways to do that. One of them is to use the "puts" statement. For example,
puts("Hello World!");
+ 4
try this
if(puts("hello"))
{}
+ 4
u can use while loop or for loop to print it multiple times..
+ 1
yes this may b me possible. but question is without using ; (semicolon).