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

Answers were Sorted based on User's Feedback



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

Answer / nelson

The only difference between sprintf() and printf() is that
sprintf() writes data into a character array, while printf
() writes data to standard output device.

Is This Answer Correct ?    118 Yes 10 No

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

Answer / guest

prinf will print the data on to the screen.
sprintf will print the data to a buffer.

basically sprintf is used for formatting the output.

printf("%s",google);
char *p;
sprintf(p,"%s",google);

Is This Answer Correct ?    91 Yes 18 No

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

Answer / 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

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

Answer / namitha

printf is used to write the data in its format.
sprintf is used to write formatted data to string.

Is This Answer Correct ?    21 Yes 8 No

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

Answer / praveen

printf writes the data to console
sprintf writes the data to an array

Is This Answer Correct ?    5 Yes 5 No

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

Answer / lavanya

printf funtion is to write the output to stdout.
sprintf function is to store romatted input output on a
string buffer

Is This Answer Correct ?    11 Yes 13 No

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

Answer / ramanji

printf() is used to send the output to the output consoled
device i.e,monitor

and the sprintf() is send the output to the specified file
that will be given in the parameters

Is This Answer Correct ?    8 Yes 11 No

Post New Answer

More C++ General Interview Questions

What is the use of namespace std in C++?

0 Answers   Hexaware,


How do you sort a sort function in c++ to sort in descending order?

0 Answers  


why is iostream::eof inside a loop condition considered wrong?

0 Answers  


What are the three forms of cin.get() and what are their differences?

0 Answers  


What do you mean by static variables?

0 Answers  


write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;

0 Answers  


Why is "using namespace std;" considered bad practice?

0 Answers  


What is the use of string in c++?

0 Answers  


Define a nested class. Explain how it can be useful.

0 Answers  


what are the iterator and generic algorithms.

0 Answers  


Can class objects be passed as function arguments?

0 Answers   HCL,


What is abstraction with real time example?

0 Answers  


Categories