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

Answer Posted / sandip kundu

#include<stdio.h>
#include<conio.h>
void main()
{
if(printf ("hi"))
getch();
}

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why pointers are used in c?

592


write a program to print data of 5 five students with structures?

1610


Why clrscr is used in c?

589


What is array within structure?

589


Explain the use of function toupper() with and example code?

655






write a c program in such a way that if we enter the today date the output should be next day's date.

1685


Tell me when would you use a pointer to a function?

611


Explain what standard functions are available to manipulate strings?

613


How do we declare variables in c?

575


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

637


What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

610


An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above

661


Why C language is a procedural language?

625


What is the purpose of main( ) in c language?

625


Compare array data type to pointer data type

603