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
Is c high or low level?
What are the c keywords?
What is the use of printf() and scanf() functions?
What are the key features in c programming language?
Write a program to find the biggest number of three numbers in c?
What does void main return?
What is infinite loop?
What is wrong with this declaration?
Explain what is meant by high-order and low-order bytes?
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
How can I change their mode to binary?
Can a pointer point to null?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Do array subscripts always start with zero?
For what purpose null pointer used?