Programming in C Practical Questions

List Of Practicals

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