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

‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .

2566


How can I avoid the abort, retry, fail messages?

853


Is boolean a datatype in c?

747


Explain modulus operator. What are the restrictions of a modulus operator?

812


What does do in c?

783


How do you search data in a data file using random access method?

1074


Explain how can you tell whether a program was compiled using c versus c++?

764


Explain b+ tree?

824


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1550


You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.

2045


What are the types of bitwise operator?

831


An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode

834


How can I ensure that integer arithmetic doesnt overflow?

815


What do mean by network ?

878


Is there a built-in function in C that can be used for sorting data?

991