Printf() as a argument of another printf()

#include< stdio.h >
main()
{
printf("%d",printf("selva"));
}

output:
selva 5

for explanation see last post. If you can't able to understand, comment your queries.

Related Posts