Add this to the CSS of a and b.
max-height:500px;.
As long as you are escaping your floats (if any) correctly, it will cut it off there.
You may need to add
overflow:hidden;
if your content in a or b extends 500px, this will cut it from being seen in the page.
The completed code as I understand the question is
The CSS
#wrap { width: 700px; height:500px; } /* this combines both static widths and height stays dynamic */
.a, .b { float:left; background-color:#F03; width: 200px; height:50%; min-height:100px; max-height: 500px; }
.c { background-color:#990; width: 500px; height: 500px; float: right; }
HTML
<div id="wrap">
<div class="c">C</div>
<div class="a">A</div>
<div class="b">B</div>
<div style="clear:both;">
</div>
Notice the C is on top. That's because it floats to the right side of the container and the rest tries to find room that C isn't filling. Background colors just for visual aid.
http://jsfiddle.net/QW5MQ/ <-- These are your friend.