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...

can we print any string in c language without using
semicolon(;)(terminator) in whole program.

Answer Posted / k satish kumar reddy

main()
{
switch(printf("hello "))
{
}
}

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?

1269


What is the sizeof () operator?

1079


What is pointer to pointer in c with example?

1064


What happens if a header file is included twice?

1034


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2576


How many loops are there in c?

1107


What are external variables in c?

1100


Which is more efficient, a switch statement or an if else chain?

1019


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1819


Explain pointers in c programming?

1110


the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?

995


Is using exit() the same as using return?

1344


What is the purpose of main() function?

1243


What are the types of c language?

1026


What is wrong with this program statement?

1033