what is the diff between the printf and sprintf functions??
and what is the syntax for this two functions ??

Answer Posted / jack

The printf subroutine converts, formats, and writes the
Value parameter values, under control of the Format
parameter, to the standard output stream.

The sprintf subroutine converts, formats, and stores the
Value parameter values, under control of the Format
parameter, into consecutive bytes, starting at the address
specified by the String parameter. The sprintf subroutine
places a null character (\0) at the end. You must ensure
that enough storage space is available to contain the
formatted string.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c high or low level?

772


What are the c keywords?

938


What is the use of printf() and scanf() functions?

804


What are the key features in c programming language?

801


Write a program to find the biggest number of three numbers in c?

793


What does void main return?

817


What is infinite loop?

827


What is wrong with this declaration?

820


Explain what is meant by high-order and low-order bytes?

818


The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none

975


How can I change their mode to binary?

883


Can a pointer point to null?

778


Which control loop is recommended if you have to execute set of statements for fixed number of times?

1072


Do array subscripts always start with zero?

985


For what purpose null pointer used?

798