write a “Hello World” program in “c” without using a semicolon?

Answer Posted / saranya

int main()
{
if(printf("Hello world"))
{

}

}

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1531


How to write a code for reverse of string without using string functions?

1837


What is actual argument?

828


Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58

1311


What are the different types of constants?

844


What is the sizeof () operator?

794


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

946


What does char * * argv mean in c?

817


How important is structure in life?

803


What is derived datatype in c?

830


Why can’t constant values be used to define an array’s initial size?

1110


What is the use of extern in c?

850


what is the structure pointer?

1865


string reverse using recursion

2084


Explain why C language is procedural?

982