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
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
How can I avoid the abort, retry, fail messages?
Is boolean a datatype in c?
Explain modulus operator. What are the restrictions of a modulus operator?
What does do in c?
How do you search data in a data file using random access method?
Explain how can you tell whether a program was compiled using c versus c++?
Explain b+ tree?
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
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.
What are the types of bitwise operator?
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
How can I ensure that integer arithmetic doesnt overflow?
What do mean by network ?
Is there a built-in function in C that can be used for sorting data?