Instructions on using snprintf in vs2010

Source: Internet
Author: User

# Include <stdio. h>
# Include <stdlib. h>
Void F (const char * P)
{
Char Buf [4] = {};
_ Snprintf (BUF, sizeof (BUF), "% 6 s", P );
Printf ("% C", Buf );
Printf ("% 2 s", Buf );
}
Int main ()
{
Char s [4] = {"123 "};
F (s );
Getchar ();

}

Check the code first. What is the output?

First, in vs2010 (this version is used only, and others are unclear), snprintf cannot find the defined version, and add _ snprintf.

Snprinf is written from the back end. That is to say, if the number of characters to be written is greater than the number of accepted characters, it is written from the back to the back.

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.