I\'m wondering what the following statement will print in C?
printf(\"hello\\n\") || (printf(\"goodbye\\n\") || printf(\"world\\n\"));
I\'m usu
It prints "hello" only!
http://www.compileonline.com/compile_c_online.php
#include #include main() { printf("hello\n") || (printf("goodbye\n") || printf("world\n")); }