Programming in C Practical Questions
List Of Practicals
- Implement C programs using Constants and Variables.
- Implement C programs using arithmetic operators to solve given arithmetic operations.
- Implement C programs using implicit and Explicit data type conversion.
- Write well commented C programs using formatted Input/Output statements.
- Implement minimum two C programs using Relational and conditional operator.
- Implement minimum two C programs using Logical Operators.
- Implement minimum two C programs using Bitwise Operators.
- Implement minimum two C programs using simple If statement and if. Else statement.
- Implement minimum two C programs using nested If .else statement and if.. else if ladder.
- Develop C program using Switch statements.
- Write a C program to print English Calendar months as per given number (eg: If input is 4 then print “April”) using Switch statement.
- Implement minimum two C programs using ‘while’ loop and ‘do…while’ loop statements.
- Implement C programs using for loop statement (e.g.- Write a C Program to print numbers from 1 to 100).
- Print various patterns using loops.
- Implement C programs using One Dimensional Array. (e.g.-Write C program to input 5 numbers using array and display sum of it).
- Implement C programs using Two -Dimensional Array. (e.g. – Write C program to calculate addition of two 3X3 matrices.)
- Write C program to perform following operations without using standard string functions.
i) Calculate Length of given string ii) Print reverse of given string. - Implement ‘Structure’ in C (e.g. – Add and Subtract complex numbers using structure).
- Implement ‘Array of Structure’ in C (e.g. -Accept and Display 10 Employee information using structure).
- Develop C program using in – built mathematical and string functions.
- Write C program to demonstrate User defined Functions.
- Implement recursive functions in C program.
- Write C Program to print addresses and values of variables using Pointer. (e.g. – Write C program to access and display address of variables.)
- Implement C Programs to perform arithmetic operations using Pointer.