Explain basic structure of Cprogram.
[5 marks]Answer the following questions. 1. Why Cis called middle level language? 2. What is the use of printf( ) function? 3. Adeclaration int a, b; occupies how much memory? 4. The keyword void is a data type in C. True or False? 5. Like variables, constants have a type. True or False?
[5 marks]Write a Cprogram to find area of a circle.
[5 marks]Explain following operators with example. 1. Relational operator 2. Bitwise operator
[5 marks]Write a Cprogram to print the following pattern.
[5 marks]Explain nested if statement with suitable example.
[5 marks]Write a program to display multiplication table using for loop.
[5 marks]Give the difference between while loop and do..while loop.
[5 marks]Explain following built-in string functions with suitable example. 1. strlen( ) 2. strrev( )
[5 marks]Explain categories of user defined function.
[5 marks]How can you initialize and declare the array? Explain in brief.
[5 marks]What is recursion? Explain with suitable example.
[5 marks]Give the difference between structure and union.
[5 marks]Write a Cprogram to copy the contents of one file into another.
[5 marks]Explain various storage class used in C.
[5 marks]Write a Cprogram that uses a table of integers whose size will be specified interactively at run time.
[5 marks]