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


Please Help Members By Posting Answers For Below Questions

What is new line escape sequence?

1006


The difference between printf and fprintf is ?

941


How do I create a directory? How do I remove a directory (and its contents)?

838


What is the best way of making my program efficient?

759


Do string constants represent numerical values?

1122


how logic is used

1686


how to find anagram without using string functions using only loops in c programming

2915


can we implement multi-threads in c.

860


When would you use a pointer to a function?

786


How to draw the flowchart for structure programs?

8961


#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); }

942


Does c have function or method?

791


What is the explanation for modular programming?

896


Why isn't it being handled properly?

827


pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

2402