21 lines
1014 B
C
21 lines
1014 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* realoutfloat.c :+: :+: */
|
|
/* +:+ */
|
|
/* By: houtworm <codam@houtworm.net> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2023/10/26 18:41:46 by houtworm #+# #+# */
|
|
/* Updated: 2023/10/26 18:41:47 by houtworm ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
printf(argv[1], atof(argv[2]));
|
|
return (0);
|
|
}
|