how can we print  hellow world programme without using semicolon

Answers were Sorted based on User's Feedback



how can we print  hellow world programme without using semicolon..

Answer / sreevalli

if (printf("hello world"))

Is This Answer Correct ?    8 Yes 1 No

how can we print  hellow world programme without using semicolon..

Answer / akbar

#include<stdio.h>
int main()
{
printf("Hello World
");
return 0;
}

Is This Answer Correct ?    0 Yes 0 No

how can we print  hellow world programme without using semicolon..

Answer / rohit kakade

#include<stdio.h>
#include<conio.h>
void main(void)
{
     while(printf("HellO")==0)
getch();
}

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More C Interview Questions

What is a constant?

0 Answers  


Method Overloading exist in c ?

3 Answers   Wipro,


What are pointers really good for, anyway?

0 Answers  


How can I make a program in c to print 'Hello' without using semicolon in the code?

9 Answers   C DAC, Practical Viva Questions,


Is it possible to create recycle bin in mobiles?

2 Answers  


What is this pointer in c plus plus?

0 Answers  


Explain #pragma in C.

1 Answers  


Why is c still so popular?

0 Answers  


What is the use of define in c?

0 Answers  


WHAT IS LOW LEVEL LANGUAGE?

2 Answers  


Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .

2 Answers   Oracle,


Explain b+ tree?

0 Answers  


Categories