Iat2 QB
Iat2 QB
Differentiate between
gets() and fgets().
Explain structure and Union with syntax and example. Differentiate between
structure and union.
Define Pointer. Explain pointer variable declaration and initialization with
suitable example.
Define String. Explain any 4-string manipulation function with suitable
example.
How 1D integer array is represented in memory. With the help of suitable example
demonstrate the initializing the element.
What is recursion? Develop a C program to print Fibonacci series using recursion
Develop a C program to concatenate two strings without using built-in function
Write a C program to transpose a m x n matrix
Explain the following with example with respect to structures
a)Structure Name b)Member of a structure c)Accessing a structure
Also write a C program to explain all these terms of Structure.
Explain the different types of storage classes with example.
Differentiate actual and formal parameters.
Write a C program to implement bubble Sort technique (ascending order).
Demonstrate the steps for the input: 9, 20, 6, 3, 2, 12, 15.
Write a C code to implement Matrix multiplication and validate the rules of
multiplication
Write a C program to search a key integer element in the given array of N
elements using binary search technique. Assure that numbers are sorted
before search operation.
Write a C program to create user defined functions that implements string
operations such as compare, concatenate, copy and length of the string using
parameter passing techniques.
What is an array?Explain how one dimensional array are declared and
initialized.
Write a C program to find the longest of n numbers.
Write a C program to implement structure to read, write and compute average
marks and the students scoring above and below the average marks for a
class of N students.
Write a C program to find sum, mean,variance and standard deviation of all
elements
in an array using a pointer?
Illustrate the recursive function with the code for finding the factorial of a
number using the same.
Differentiate actual and formal parameters.
Write a C program to implement bubble Sort technique (ascending order).
Demonstrate the steps for the input: 9, 20, 6, 3, 2, 12, 15.
Write a C code to implement Matrix multiplication and validate the rules of
multiplication.
List out the four different ways to initialize the strings each with an example.
Define string. Write a program to get string data from the user and display it
using the gets and puts function.
Write a C program to create user defined functions that implements string
operations such as compare, concatenate, copy and length of the string using
parameter passing techniques.
Explain declaration and initialization of 1-dimensional arrays with example.
Explain declaration and initialization of 2-dimensional arrays with example.
Write a C program to concatenate two strings without using the library
function.
Write a C program to transpose a matrix of order 3x3.