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

is compiler do read the data line by line or not. ??

6 Answers   LG Soft, Satyam, Tech Mahindra,


How to establish connection with oracle database software from c language?

0 Answers  


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

0 Answers  


What is the use of extern in c?

0 Answers  


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

0 Answers  






change to postfix a/(b+c*d-e)

8 Answers   Value Labs,


Why does not c have an exponentiation operator?

0 Answers  


how to create c progarm without void main()?

1 Answers   NIIT,


C program to perform stack operation using singly linked list

3 Answers  


what is the difference between declaration and definition of a variable or function ?

3 Answers  


int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā€œ%dā€,*(*(x+1)+3));

2 Answers   Wipro,


what is the difference between i++ and ++i?

5 Answers  


Categories