Advertisement
Guest User

Untitled

a guest
Feb 9th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. One other point: The preceding chapter used sizeof with parentheses, but this example
  2. doesnโ€™t. Whether you use parentheses depends on whether you want the size of a type or the size
  3. of a particular quantity. Parentheses are required for types but are optional for particular
  4. quantities. That is, you would use sizeof(char) or sizeof(float) but can use sizeof name or
  5. sizeof 6.28. However, it is all right to use parentheses in these cases, too, as in sizeof (6.28).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement