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

Answers were Sorted based on User's Feedback



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

Answer / vikas

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

Is This Answer Correct ?    18 Yes 3 No

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

Answer / ramu gurram

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

Is This Answer Correct ?    10 Yes 1 No

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

Answer / jithneder palle

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

Is This Answer Correct ?    9 Yes 2 No

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

Answer / rajveer singh rana

#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hello world"))
getch();
}

Is This Answer Correct ?    1 Yes 0 No

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

Answer / ramu gurram

#include<stdio.h>
int main(void)
{
if(printf("hello world"));
return 0;
}

Is This Answer Correct ?    4 Yes 4 No

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

Answer / @bhi

echo "Hello World" //shell script

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what is difference between null and nul in c language

2 Answers  


what is the need for main function in c?

5 Answers  


What is the meaning of ?

0 Answers  


What does main () mean in c?

0 Answers  


Write a program to find given number is even or odd without using any control statement.

2 Answers  






print the table 5 in loops

3 Answers  


What is identifiers in c with examples?

0 Answers  


What is structure padding ?

3 Answers   HP,


The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none

0 Answers  


Define function ?Explain about arguments?

2 Answers   Geometric Software, Infosys,


what is printf

5 Answers   MVSR, Satyam,


What is the basic structure of c?

0 Answers  


Categories