C Interview Paper

C Interview Questions Paper: 1. What is the difference between Char a[ ]=”string” and char *a=”String” 2. What is wrong with the code? The code was for conversion from Celsius to Fahrenheit : degF =5/9*(c+32) In code this line was wrong as we want 5/9 and that to be multiplied with...