Skip to content

Commit

Permalink
Fix the exercise4.30
Browse files Browse the repository at this point in the history
  • Loading branch information
evan617 committed Nov 13, 2014
1 parent 7ce3ad7 commit 016088f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch04/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ reference: [Why the size of a pointer is 4bytes in C++](http://stackoverflow.com
sizeof x + y // sizeof(x+y)
sizeof p->mem[i] // sizeof(p->mem[i])
sizeof a < b // sizeof(a) < b
sizeof f() // compile successfully.
sizeof f() // compile error if the return of f() is void. If f() has a return value, compile successfully.
```

-----
Expand Down

0 comments on commit 016088f

Please sign in to comment.