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 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 c?

4 Answers   IBM, TCS,


what is structuer?

4 Answers   LG Soft, Wipro,


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


write a program to print largest number of each row of a 2D array

0 Answers  


How we can insert comments in a c program?

0 Answers  


What are the storage classes in C?

0 Answers  


#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }

3 Answers   IBM,


How to explain the final year project as a fresher please answer with sample project

0 Answers  


What is the purpose of realloc()?

0 Answers  


how to construct a simulator keeping the logical boolean gates in c

0 Answers  


What is extern variable in c with example?

0 Answers  


Program to write some contents into a file using file operations with proper error messages.

2 Answers  


Categories