The gcc C/C++ language the arduino uses is case sensitive so you have to know the proper name for the functions. PORTC and portc are different and only PORTC is a predefined name. The arduino reference section is a good place to see what the proper naming of all the arduino supplied functions and library names are:
PORTC is for analog input pins and it was defined as input by default, so if you did not defined it as output then you can not clear all the bits, it will depend on the pins status.
Roshani:
This is my 2nd post on forum & i am novice for Arduino.
Given the level of understanding implied by your questions, I suggest that you should not be trying to access the hardware ports directly in any case. The Arduino provides a nice simple API that protects you from the hardware details and bypassing that to access the hardware directly is not usually necessary and not recommended for inexperienced programmers. What are you trying to achieve?