Printf statement and their return value

void main()
{
printf(“%d”,printf(“tim”));
}
Tutorial answer:
tim3
Debugging solution:
First it will print time
Second: it will print how many character are display(there are three character :tim)

Post a Comment

0 Comments