main(){int x=5;clrscr();for(;x>= 0;x--){printf("x=%d ", x--);}}this is the correct way to print the values 5,3,1
supriya.ahire
Mar 21st, 2006
hi, o/p is (D).It prints nothing. Though we r initializing x to 5 but in for loop it does not satisfies the condoition (x< 0),it fails.without entering in the for loop it exit from th emain program.-supriya Ahire.