write a c program to print "Welcome" without using semicolon
in the whole program ??

Answer Posted / kayalvizhi.s

#include<stdio.h>
{
main()
while(printf("welcome"))
}

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between procedural and declarative language?

645


What does 4d mean in c?

939


What is c preprocessor mean?

785


writ a program to compare using strcmp VIVA and viva with its output.

1519


Is exit(status) truly equivalent to returning the same status from main?

583






Does c have circular shift operators?

726


Is null always equal to 0(zero)?

578


What is malloc() function?

634


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

764


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

2264


Why do we use null pointer?

601


What is self-referential structure in c programming?

655


What is new line escape sequence?

805


What is f'n in math?

617


Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff

2238