progs/C5.c
author cu
Sat, 28 Oct 2017 00:02:06 +0100
changeset 559 a2d690dde419
parent 236 40efc28963af
permissions -rw-r--r--
updated cw

#include<stdio.h>
#include<string.h>

int main(int argc, char **argv)
{  char buf[10];
   snprintf(buf, sizeof buf, argv[1]);
   printf ("Input: %s \n", buf);
}