P
prasoonthegreat
int main(void ){
int i=1;
++i =5;
return 0;
}
Does the above code show Undefined Behaviour???
The value of i is modified just once between two sequence
points.....isn't it????
Please correct me...if I am wrong
int i=1;
++i =5;
return 0;
}
Does the above code show Undefined Behaviour???
The value of i is modified just once between two sequence
points.....isn't it????
Please correct me...if I am wrong