/* A C program illustrating the use of pointers */
# include stdio.h
main( )
{
char *name= "Subhajit is doing C programming";
char *input= name;
printf("%c%d", puts(input++), strlen(input));
}

Output is
Subhajit is doing C programming
31