Remove unwanted paranthesis in c language

I need the concept and answer for removal of unwanted paranthesis program in c language.Please help me!

What you need is operator precedence table. Try to memorise the operator precedence of the most common operators used. Here is a link to the table: http://en.cppreference.com/w/c/language/operator_precedence

Can you please share your code?