2020-01-12 17:42:25 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
|
|
|
* Copyright © 2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
*
|
|
|
|
* This file is part of GNU Mes.
|
|
|
|
*
|
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-09-01 20:18:00 +00:00
|
|
|
#include <mes/lib.h>
|
2020-01-12 17:42:25 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
main ()
|
|
|
|
{
|
|
|
|
char buf[20];
|
2019-09-01 20:18:00 +00:00
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
printf ("%3.6d\n", i);
|
|
|
|
sprintf (buf, "%3.6d", i);
|
|
|
|
puts (buf);
|
|
|
|
|
|
|
|
double d = 1;
|
|
|
|
printf ("%3.6f\n", d);
|
|
|
|
sprintf (buf, "%3.6f", d);
|
|
|
|
puts (buf);
|
|
|
|
printf ("%3.6g\n", d);
|
|
|
|
sprintf (buf, "%3.6g", d);
|
2020-01-12 17:42:25 +00:00
|
|
|
puts (buf);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|