how to write hello word without using semicolon at the end?

Answer Posted / jithneder palle

int main(void)
{
if(printf("hello world"))
}

Is This Answer Correct ?    9 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you read a directory in a C program?

739


Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014  Npu university

1695


What is the difference between procedural and functional programming?

600


What is the equivalent code of the following statement in WHILE LOOP format?

895


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

878






What is the c language function prototype?

742


What does %2f mean in c?

821


Ow can I insert or delete a line (or record) in the middle of a file?

662


What is the use of a semicolon (;) at the end of every program statement?

924


What is a program flowchart and explain how does it help in writing a program?

789


What is quick sort in c?

696


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1358


When we use void main and int main?

673


Is c still relevant?

728


Under what circumstances does a name clash occur?

791