dev/c/sprintf/bcb_xe3/File1.cpp

16 lines
241 B
C++

#include <vcl.h>
#include <windows.h>
#pragma hdrstop
#pragma argsused
#include <tchar.h>
#include <stdio.h>
int _tmain(int argc, _TCHAR* argv[])
{
printf ("%2$.2d, %1$s\n", "ñòðîêà", 2000);
system("pause");
return 0;
}