Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How can you print HELLO WORLD without using "semicolon"?

Answers were Sorted based on User's Feedback



How can you print HELLO WORLD without using "semicolon"?..

Answer / gganesh

#include<stdio.h>
void main()
{
if(printf("Hello world"))
{
}
}

Is This Answer Correct ?    30 Yes 8 No

How can you print HELLO WORLD without using "semicolon"?..

Answer / vinita khandavi

#include(stdio.h)
// Develped by vinita
void main()
{
if(printf("Hello world"))
{
}
}

Is This Answer Correct ?    32 Yes 17 No

How can you print HELLO WORLD without using "semicolon"?..

Answer / anuj shukla

#include<stdio.h>
void main()
{
if(printf("helloworld"))
{
}
}

Is This Answer Correct ?    17 Yes 6 No

How can you print HELLO WORLD without using "semicolon"?..

Answer / prakash

#include<stdio.h>
#include<conio.h>
void main()
{
if(printf(hello world))
{
getch();
}
}

Is This Answer Correct ?    12 Yes 9 No

How can you print HELLO WORLD without using "semicolon"?..

Answer / m.manivel

#include<stdio.h>
int main()
{
switch(printf("hello world!))
return 0;
}

Is This Answer Correct ?    0 Yes 0 No

How can you print HELLO WORLD without using "semicolon"?..

Answer / spicy

#include<stdio.h>
void main()
{
if(printf("HELLO WORLD"))
getch();
}

Is This Answer Correct ?    3 Yes 6 No

How can you print HELLO WORLD without using "semicolon"?..

Answer / sivasankari

#include <stdio.h>

#define WEE puts( "Hello World!" );

int main( int argc, char * argv[] ) {
WEE

}

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More C Interview Questions

what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


What are the characteristics of arrays in c?

0 Answers  


How can I remove the leading spaces from a string?

0 Answers  


how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help

5 Answers  


Differentiate b/w Modify and Update commands giving example.

1 Answers  


What are c identifiers?

0 Answers  


int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);

6 Answers   HCL, Octal, SW,


why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }

0 Answers  


What is the difference between getch() and getche()?

1 Answers   NSPL,


for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????

8 Answers  


main() { int i; printf("%d",i^i); }

1 Answers  


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

0 Answers   Aspiring Minds,


Categories