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


Please Help Members By Posting Answers For Below Questions

List the variables are used for writing doubly linked list program.

1618


What are logical errors and how does it differ from syntax errors?

656


Can you apply link and association interchangeably?

670


Why shouldn’t I start variable names with underscores?

623


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

623






a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none

717


Why is main function so important?

611


What is default value of global variable in c?

560


What is return type in c?

636


All technical questions

1508


Do you have any idea about the use of "auto" keyword?

662


Explain the properties of union.

607


How can I insert or delete a line (or record) in the middle of a file?

571


Describe static function with its usage?

607


What does != Mean in c?

582