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

tell me the full form of c?

2 Answers  


program to find the magic square

1 Answers   Infosys,


how to find out the reverse number of a digit if it is input through the keyboard?

6 Answers  


Sir i need notes for structure,functions,pointers in c language can you help me please

0 Answers   TCS,


#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain

2 Answers  






How can I avoid the abort, retry, fail messages?

0 Answers  


A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.

0 Answers  


write a program to compare 2 numbers without using logical operators?

5 Answers   IBM,


Write a program to print "hello world" without using a semicolon?

0 Answers  


Are the expressions * ptr ++ and ++ * ptr same?

0 Answers  


Explain can the sizeof operator be used to tell the size of an array passed to a function?

0 Answers  


What is the difference between constant pointer and constant variable?

0 Answers   NIIT,


Categories