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

What is the Difference between "printf" and "sprintf"?

Answer Posted / prits

printf : Print formatted data to stdout (function)
sprintf:writes its results to a string instead of stdout

#include <stdio.h>

int main ()
{
char buffer [50];
int n, a=5, b=3;
n=sprintf (buffer, "%d plus %d is %d", a, b, a+b);
printf ("[%s] is a %d char long string\n",buffer,n);
return 0;
}

Is This Answer Correct ?    31 Yes 18 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of map in c++?

1100


In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h

1170


why and when we can declar member fuction as a private in the class?

2032


Is linux written in c or c++?

999


What is the full form of india?

1052


Can I uninstall microsoft c++ redistributable?

1057


What do manipulators do?

970


Is c++ a difficult language?

1056


What are the unique features of C++.

1040


What are c++ storage classes?

1057


List the features of oops in c++?

994


What will the line of code below print out and why?

687


What is the role of copy constructor in copying of thrown objects?

1015


What are structs in c++?

979


What are friend functions in C++?

1017