binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / strings.c
CommitLineData
04a13a6f 1#include "cll1.h"
2
3program
4{
5 char *ptr;
6
7 asprintf(&ptr,"%ld",123456789);
8 printf("strlen(\"%s\")=%d\n",ptr,strlen(ptr));
9
10 ptr=catf("%ld",123456789);
11 printf("strlen(\"%s\")=%d\n",ptr,strlen(ptr));
12
13}
This page took 0.11374 seconds and 4 git commands to generate.