Define following terms: 1) Application Software 2) System Software 3) Algorithm 4) Flowchart.
[4 marks]Draw the flow chart to find the largest of the given three numbers – A ,Band C
[3 marks]Explain different type of operators used in c language with their precedence and associativity.
[7 marks]Discuss use of break and continue statement in Cwith example.
[3 marks]Compare and contrast while and do while loop with example.
[4 marks]Write a Cprogram to print following pattern.1
[7 marks]Write a Cprogram to print following pattern.1
[7 marks]Write a program to check whether entered character is vowel or not?
[3 marks]Explain getch(), getchar(), gets(), puts() .
[4 marks]Develop a menu-based program to perform addition, multiplication, subtraction and division using user-defined function.
[7 marks]Write an algorithm for finding odd and even number from given two numbers.
[3 marks]Write a program to check whether entered number is prime or not with the help of user-defined function check-prime().
[4 marks]Write a program to find out the largest of an array.
[7 marks]What is structure? Explain with example how to declare a structure and how to initialize it.
[3 marks]Explain following string manipulation function. strcat( ), strcpy( ) ,strcmp( ) and strlen( )
[4 marks]Write a program in c for multiply two matrices Aand Bof dimensions pXq and qXr respectively and store the result in third matrix C. OR1
[7 marks]Demonstrate declaration and initialization of two dimensional array with suitable example.
[3 marks]Explain nested if else ladder with suitable example.
[4 marks]Write a program in c using structure to enter rollno, marks of the three subject for 3 student and find total obtained by each student
[7 marks]What do you mean by recursive function? What care must be taken while writing a program with recursive function?
[3 marks]Explain fopen() and its mode with example.
[4 marks]Describe different categories of user-defined functions.
[7 marks]What is pointer? Explain how pointers are declared and initialized. .
[3 marks]Compare malloc() and calloc() functions for dynamic memory allocation.
[4 marks]Develope a program in Cto check the entered number is prime or not by creating a user-defined function named check_prime().
[7 marks]