summaryrefslogtreecommitdiff
path: root/5p8.cpp
blob: 4e9b5b14f718920824616e8d7dc96245eae329d4 (plain)
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;
}