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

character array A[12] can hold

5 Answers   Wipro,


what is the structure?

4 Answers   TCS,


Tell me the use of bit field in c language?

0 Answers  


Why main function is special give two reasons?

0 Answers  


20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????

2 Answers  


what does static variable mean?

0 Answers   TCS,


4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

5 Answers  


how to find a 5th bit is set in c program

4 Answers   IBM,


Write a programe print the sum of series 0,1,2,.....10

7 Answers  


Can you add pointers together? Why would you?

0 Answers  


What is declaration and definition in c?

0 Answers  


If the static variable is declared as global, will it be same as extern?

1 Answers   Samsung,


Categories