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

without a terminator how can we print a message in a printf
() function.

Answer Posted / dewanshu goel

#include<stdio.h>
main()
{
if(printf("the message is print without terminator"))
}

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the advantage of c?

1201


How can I invoke another program or command and trap its output?

1148


why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above

1188


What is the difference between malloc calloc and realloc in c?

1187


When the macros gets expanded?

1483


What is structure in c definition?

1106


Why isn't any of this standardized in c? Any real program has to do some of these things.

1264


Do pointers take up memory?

1206


What is the difference between printf and scanf in c?

1427


Explain pointer. What are function pointers in C?

1144


What does sizeof function do?

1254


What is a void pointer? When is a void pointer used?

1103


Write the Program to reverse a string using pointers.

1069


Why does notstrcat(string, "!");Work?

1203


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

1339