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
why return type of main is not necessary in linux
Once I have used freopen, how can I get the original stdout (or stdin) back?
How can I write a function analogous to scanf?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Differentiate between Macro and ordinary definition.
List the difference between a While & Do While loops?
Tell me what is the purpose of 'register' keyword in c language?
What is fflush() function?
Explain about C function prototype?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Explain is it valid to address one element beyond the end of an array?
What do mean by network ?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What are nested functions in c?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?