1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* * * 5.8 * * */ int main () { // Dangling else is the ambiguity in if else statements /* if(condition) statement if(condition2) statement if(condition3) statement else statement */ return 0; }