progs/C5.c
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Wed, 07 Oct 2015 10:14:04 +0100
changeset 398 b183036ba675
parent 236 40efc28963af
permissions -rw-r--r--
updated slides

#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);
}