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
Define the scope of static variables.
What is advantage of pointer in c?
write a program to print data of 5 five students with structures?
how we can make 3d venturing graphics on outer interface
What is a structure member in c?
Difference between pass by reference and pass by value?
What are the uses of null pointers?
What is an example of structure?
Stimulate calculator using Switch-case-default statement for two numbers
What are pointers? What are stacks and queues?
What is d'n in c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What are the basic data types associated with c?
What is variable declaration and definition in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.