Fprintf () annotation in msdn

Source: Internet
Author: User

// Crt_fprintf.c
/* This program uses fprintf to format various
* Data and print it to the file named fprintf. Out. it
* Then displays fprintf. Out on the screen using the System
* Function to invoke the operating-system type command.
*/

# Include <stdio. h>
# Include <process. h>

File * stream;

Int main (void)
{
Int I = 10;
Double fp = 1.5;
Char s [] = "this is a string ";
Char c = '\ n ';

Fopen_s (& stream, "fprintf. Out", "W ");
Fprintf (stream, "% S % C", S, C); // The first parameter indicates the output stream. stderr is a standard error output stream, and the second parameter indicates the output format, the third parameter, such as S and C, indicates the variable to be output.
Fprintf (stream, "% d \ n", I );
Fprintf (stream, "% F \ n", FP );
Fclose (Stream );
System ("type fprintf. Out ");
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.