What is the output of the following program?
#include <stdio.h>
int main()
{
    int i=5,j=6,k=7;
    i+=j*=k-=1;
    printf("%d %d %d",i,j,k);
}


Posted on by