write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / upendra
main()
{
if(printf("welcome"))
}
}
]
Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is new line escape sequence?
The difference between printf and fprintf is ?
How do I create a directory? How do I remove a directory (and its contents)?
What is the best way of making my program efficient?
Do string constants represent numerical values?
how logic is used
how to find anagram without using string functions using only loops in c programming
can we implement multi-threads in c.
When would you use a pointer to a function?
How to draw the flowchart for structure programs?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Does c have function or method?
What is the explanation for modular programming?
Why isn't it being handled properly?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)