What will be the output of the following program?

1.3 What will be the output of the following program?
void main ( )
{
int k = 35;
printf(“\n%d %d %d”, k = =35, k=50,k>40);
}
A) 50 0 0
B) 0 0 50
C) 0 50 0
D) 35 35 35


Leave a Reply