write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / rama krishna sidhartha
main()
{
if(printf("Welcome"))
{
}
}
(OR)
main()
{
if(printf("Welcome"))
}
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
how can f be used for both float and double arguments in printf? Are not they different types?
What is difference between array and structure in c?
Explain the use of 'auto' keyword
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
What is the usage of the pointer in c?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Tell me the use of bit field in c language?
Differentiate between functions getch() and getche().
Is the exit() function same as the return statement? Explain.
What's a good way to check for "close enough" floating-point equality?
Write a program to swap two numbers without using the third variable?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Explain what is a static function?