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 difference between far and near pointers?
What is an endless loop?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What is function definition in c?
What is main () in c?
how to find anagram without using string functions using only loops in c programming
What will be the outcome of the following conditional statement if the value of variable s is 10?
Explain spaghetti programming?
Why we use conio h in c?
What is c language in simple words?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
how logic is used
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is cohesion and coupling in c?