Q. What is the output of this program?
Code:
#include <stdio.h>
int main()
{
int i;
i = printf("letsfindcourse");
i = printf("%d ", i);
printf("%d ", i);
return 0;
}
β
Correct Answer: (B)
letsfindcourse 14 3