write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / vadivelt
main()
{
if(printf("Welcome"))
//Do nothing
}
Is This Answer Correct ? | 50 Yes | 18 No |
Post New Answer View All Answers
Differentiate between null and void pointers.
What is array of structure in c?
What is the meaning of c in c language?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What are identifiers and keywords in c?
What is difference between union All statement and Union?
How do I determine whether a character is numeric, alphabetic, and so on?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What are nested functions in c?
Why is #define used?
What extern c means?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Explain what are multidimensional arrays?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is use of #include in c?