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

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

2 Answers  


Explain in detail how strset (string handling function works )pls explain it with an example.

1 Answers  


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

1 Answers  


What is the use of a conditional inclusion statement in C?

0 Answers   Global Logic,


How can I run c program?

0 Answers  






size maximum allocated by calloc()

3 Answers   DELL,


Why is c called c?

0 Answers  


What are the uses of a pointer?

0 Answers  


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

0 Answers   Wilco,


Can the curly brackets { } be used to enclose a single line of code?

0 Answers  


Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58

0 Answers   Zoho,


What is the use of a static variable in c?

0 Answers  


Categories