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

What is the description for syntax errors?

620


Do you know null pointer?

616


Why & is used in scanf in c?

629


Which control loop is recommended if you have to execute set of statements for fixed number of times?

813


What is difference between far and near pointers?

614






main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

639


Hai what is the different types of versions and their differences

1494


Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.

667


What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?

945


Explain how can you tell whether two strings are the same?

587


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

662


write an algorithm to display a square matrix.

2228


What does c in a circle mean?

585


What is main () in c language?

602


What do you mean by a sequential access file?

631