GeeksforGeeks » C/C++ Programming Questions
print in if and else
(2 posts)-
if(TRUE) {
printf(" Inside IF\n");
} else {
printf("Inside ELSE\n");
}Is it possible to print both statements??
Tks
-
#define TRUE (!printf(" Inside IF\n")).
Reply
You must log in to post.