How can you print HELLO WORLD without using "semicolon"?

Answer Posted / anuj shukla

#include<stdio.h>
void main()
{
if(printf("helloworld"))
{
}
}

Is This Answer Correct ?    17 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is %d called in c?

761


Explain the meaning of keyword 'extern' in a function declaration.

726


What do mean by network ?

660


What are the standard predefined macros?

634


Are comments included during the compilation stage and placed in the EXE file as well?

672






What are the types of pointers in c?

531


Can you please compare array with pointer?

618


What are the 4 data types?

602


What is linear search?

678


What is a protocol in c?

559


Explain what header files do I need in order to define the standard library functions I use?

649


What are the advantages and disadvantages of pointers?

578


What is external variable in c?

614


What is pointer & why it is used?

604


Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result

1469