Write a C program in which we can print the text “welcome” without using semicolon.
We can write the text by using the line
printf( “welcome”);
But there is a semicolon at the end of the line.
To avoid the semicolon, we can follow some trick.
We can use the same printf() statement inside if condition.
As the printf() statement returns the length of the text, so it is non zero value, so the if statement will be true.
Thus the text will be written on screen.
Example
#include<stdio.h>
main() {
if(printf(“welcome”)) {
}
}Output
welcome
No comments:
Post a Comment