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
What is difference between structure and union?
how to execute a program using if else condition and the output should enter number and the number is odd only...
How can you allocate arrays or structures bigger than 64K?
What is 02d in c?
Why c language is called c?
What is 'bus error'?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
number of times a digit is present in a number
What is the general form of #line preprocessor?
How can I direct output to the printer?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is dangling pointer in c?
What is equivalent to ++i+++j?