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 call by value and call by reference?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
How can I read in an object file and jump to locations in it?
Do character constants represent numerical values?
What do header files do?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
How do I send escape sequences to control a terminal or other device?
How do you use a pointer to a function?
Write a program of prime number using recursion.
Is boolean a datatype in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Describe how arrays can be passed to a user defined function
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Why is c used in embedded systems?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above