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 runtime errors c++?

1127


Explain binary search.

989


True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends

2389


What is the benefit of c++?

1136


What do c++ programmers do?

1061


What is the use of bit fields in structure declaration?

987


How can you differentiate between inheritance and implementation in c++?

1221


Why the usage of pointers in C++ is not recommended ?

1455


State two differences between C and C++.

1173


Explain the difference between abstract class and interface in c++?

987


What is copy constructor? Can we make copy constructor private in c++?

1091


Explain terminate() and unexpected() function?

1103


Why is c++ so fast?

1049


Define macro.

1092


What is type of 'this' pointer? Explain when it is get created?

1017