write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / sagar
main()
{
if(printf("Welcome"))
{
}
}
| Is This Answer Correct ? | 30 Yes | 10 No |
Post New Answer View All Answers
how logic is used
What is main () in c?
How many keywords are there in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is sizeof int in c?
Write a program to swap two numbers without using the third variable?
For what purpose null pointer used?
Differentiate between ordinary variable and pointer in c.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What are bitwise shift operators in c programming?
What is the scope of an external variable in c?
Why is c known as a mother language?
How can I determine whether a machines byte order is big-endian or little-endian?
What is string constants?
How do you construct an increment statement or decrement statement in C?