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
Can the curly brackets { } be used to enclose a single line of code?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is optimization in c?
What is the role of && operator in a program code?
What are the different types of control structures?
Is there any demerits of using pointer?
Is return a keyword in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is function prototype in c language?
how many errors in c explain deply
What are lookup tables in c?
What is the benefit of using an enum rather than a #define constant?
in linking some of os executables are linking name some of them
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Explain what is a const pointer?