Write a Cprogram to compute Fahrenheit from centigrade (f=1.8*c +32).
[7 marks]Design block diagram of computer and explain functionalities of various components of computer.
[3 marks]Write an algorithm to find maximum number for three given number.
[4 marks]switch-case statement
[ marks]continue statement
[ marks]Write a Cprogram to generate first n number of Fibonacci series using recursion.( 0 1 1 2 3 5 8…)
[7 marks]Write a Cprogram to find factorial of a number using recursion.
[7 marks]Differentiate: Exit controlled Loop and Entry controlled Loop
[3 marks]Explain:
[4 marks]Explain the structure of for loop with proper example.
[4 marks]Explain else… if ladder with an example.
[3 marks]List out all operators and explain any two in details.
[4 marks]Write a function in the Cprogram to return 1 if number is prime otherwise return 0.
[7 marks]Explain Type casting in Cwith example.
[3 marks]What is function? Differentiate: Call by value and Call by reference.
[7 marks]getchar() function
[ marks]Explain following terms:
[3 marks]break statement
[ marks]getch() function
[ marks]Write a Cprogram to print following patterns :
[4 marks]Write a Cprogram to copy one string to other without using string handling function.1
[7 marks]List any three header file with its usage.
[3 marks]Write a program to print following patterns :1
[4 marks]What is dynamic memory allocation? Show the use of malloc() and calloc() function with their syntax.
[3 marks]What is structure? How it is different from union? Explain nested structure with example.
[4 marks]Write a Cprogram to check whether a number is prime or not.
[7 marks]Explain following string handling functions: I. strcat() II. strcmp() III. strlen
[3 marks]What is Pointer in Cand how it initializes? State its advantages.
[4 marks]Write a Cprogram to check whether a three digits number is palindrome or not.
[7 marks]Define a structure type struct personal that would contain person name, date of joining and salary using this structure to read this information of 5 people and print the same on screen.
[7 marks]