printfnvalue

  1. M

    Explain the anomaly in the c prog

    #include<stdio.h> #include<conio.h> void main(){ clrscr(); int i,j,k; i=10; k=10; j=i++ + i--; printf("\nValue of i after expression : %d",i); printf("\nPrinting from Variable : %d",j); printf("\nPrinting from Expression : %d",k++ + k--); printf("\nValue of k after expression : %d",k)...
Top Bottom