write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / manoj srivastava
#include<stdio.h>
#include<conio.h>
void main(void)
{
if(printf("welcome"))
{}
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
how should functions be apportioned among source files?
What is wrong with this initialization?
Explain what standard functions are available to manipulate strings?
What is the use of f in c?
Which is the best website to learn c programming?
Is c pass by value or reference?
What are header files why are they important?
Why doesnt that code work?
What are the 3 types of structures?
Explain how do you view the path?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Explain how to reverse singly link list.
Explain the difference between call by value and call by reference in c language?
Ow can I insert or delete a line (or record) in the middle of a file?
Can we declare variables anywhere in c?