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
What is zero based addressing?
What does c mean in standard form?
show how link list can be used to repersent the following polynomial i) 5x+2
where are auto variables stored? What are the characteristics of an auto variable?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What are the uses of a pointer?
Explain the advantages and disadvantages of macros.
What is sizeof int?
Explain is it better to bitshift a value than to multiply by 2?
Explain how can you restore a redirected standard stream?
What is a structure in c language. how to initialise a structure in c?
What is an endless loop?
What is the full form of getch?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode