Query post category & remove any post id

If you are trying to omit posts 1,3,5 from category 3 on your blog, you can use the following code

$query = new WP_Query( array('cat' => 3, 'post_type' => 'post', 'post__not_in' => array(1,3,5) ) );

The query results will not show posts with ids 1,3,5 of category 3.