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
What is the process to create increment and decrement stamen in c?
List some of the dynamic data structures in C?
How can you call a function, given its name as a string?
Is a house a mass structure?
Explain how can you tell whether a program was compiled using c versus c++?
What is 1d array in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is the difference between typedef struct and struct?
Where in memory are my variables stored?
What does node * mean?
What is dynamic dispatch in c++?
what are the advantages of a macro over a function?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Why do we use pointer to pointer in c?
What is typeof in c?