Skip to main content

Syllabus Lab

 C PROGRAMMING LAB (Practical part of EST 102, Programming in C)


Assessment Method: The Academic Assessment for the Programming lab should be done internally by the College. The assessment shall be made on 50 marks and the mark is divided as follows:

Practical Records/Outputs - 20 marks (internal by the College), 
Regular Lab Viva - 5 marks (internal by the College), 
Final Practical Exam – 25 marks (internal by the College).

The mark obtained out of 50 will be converted into equivalent proportion out of 20 for CIE computation.

LIST OF LAB EXPERIMENTS

1. Familiarization of Hardware Components of a Computer

2. Familiarization of Linux environment – How to do Programming in C with Linux

3. Familiarization of console I/O and operators in C

i) Display “Hello World”

ii) Read two numbers, add them and display their sum

iii) Read the radius of a circle, calculate its area and display it

iv)Evaluate the arithmetic expression ((a -b / c * d + e) * (f +g)) and display its solution.Read the values of the variables from the user through console.

4. Read 3 integer values and find the largest amoung them.

5. Read a Natural Number and check whether the number is prime or not

6. Read a Natural Number and check whether the number is Armstrong or not

7. Read n integers, store them in an array and find their sum and average

8. Read n integers, store them in an array and search for an element in the array using an algorithm for Linear Search

9. Read n integers, store them in an array and sort the elements in the array using Bubble Sort algorithm

10. Read a string (word), store it in an array and check whether it is a palindrome word or not.

11.Read two strings (each one ending with a $ symbol), store them in arrays and concatenate them without using library functions.

12. Read a string (ending with a $ symbol), store it in an array and count the number of vowels,consonants and spaces in it.

13. Read two input each representing the distances between two points in the Euclidean space, store these in structure variables and add the two distance values.

14. Using structure, read and print data of n employees (Name, Employee Id and Salary)

15. Declare a union containing 5 string variables (Name, House Name, City Name, State and Pin code) each with a length of C_SIZE (user defined constant). Then, read and display the address of a person using a variable of the union.

16. Find the factorial of a given Natural Number n using recursive and non recursive functions.

17. Read a string (word), store it in an array and obtain its reverse by using a user defined function.

18. Write a menu driven program for performing matrix addition, multiplication and finding the transpose. Use functions to 
(i) read a matrix, (ii) find the sum of two matrices, (iii) find the product of two matrices, (iv) find the transpose of a matrix and (v) display a matrix.

19. Do the following using pointers 
i) add two numbers 
ii) swap two numbers using a user defined function

20. Input and Print the elements of an array using pointers

21. Compute sum of the elements stored in an array using pointers and user defined function.

22. Create a file and perform the following

iii) Write data to the file 
iv) Read the data in a given file & display the file content on console 
v) append new data and display on console

23. Open a text input file and count number of characters, words and lines in it; and store the results in an output file.

Comments

Popular posts from this blog

KTU Mandatory C programs for Laboratory and Solutions

LIST OF LAB EXPERIMENTS 1. Familiarization of Hardware Components of a Computer 2. Familiarization of Linux environment – Programming in C with Linux 3. Familiarization of console I/O and operators in C     i) Display “Hello World”     ii) Read two numbers, add them and display their sum     iii) Read the radius of a circle, calculate its area and display it 4. Evaluate the arithmetic expression ((a -b / c * d + e) * (f +g))   and display its solution. Read the values of the variables from the user through console 5. Read 3 integer values, find the largest among them. 6. Read a Natural Number and check whether the number is prime or not 7. Read a Natural Number and check whether the number is Armstrong or not 8. Read n integers, store them in an array and find their sum and average 9. Read n integers, store them in an array and search for an element in the    array using an algorithm for Linear Search 10.Read n ...

PROGRAMMING IN C KTU EST 102 THEORY AND LAB NOTES

PROGRAMMING IN C  KTU  EST 102  THEORY AND LAB   COMMON FOR ALL BRANCHES About Me  -    Find my new blog for 2024 KTU scheme Programming in C Syllabus Theory Syllabus Lab Model Question Paper EST 102 Programmin in C University Question Papers  and evaluation scheme   EST 102 Programming in C  Introduction( Lab) Introduction to C programming Linux History and GNU How to create a bootable ubuntu USB stick Installing  Linux Install Linux within  Windows Virtual Box and WSL Linux Basic Features and Architecture Basic Linux Commands Beginning C Programming Compiling C programs using gcc in Linux Debugging C program using gdb Module 1: Basics of computer hardware and software          Module-1 Reading Material Basics of Computer Architecture Hardware and Software System Software and Application Software  Programming Languages ( High level, Low level and Machine Language) and Translators ( Compiler,...

Basic Linux Commands

Basic Linux Commands for Beginners Linux is an Operating System’s Kernel. You might have heard of UNIX. Well, Linux is a UNIX clone. But it was actually created by Linus Torvalds from Scratch. Linux is free and open-source, that means that you can simply change anything in Linux and redistribute it in your own name! There are several Linux Distributions, commonly called “distros”. A few of them are: Mint Ubuntu Linux Red Hat Enterprise Linux Debian Fedora Kali Linux is Mainly used in Servers. About 90% of the Internet is powered by Linux Servers. This is because Linux is fast, secure, and free! The main problem of using Windows Servers are their cost. This is solved by using Linux Servers. Forgot to mention, the OS that runs in about 80% of the Smartphones in the World, Android, is also made from the Linux Kernel. Yes, Linux is amazing! A simple example of its security is that most of the viruses in the world run on Windows, but not on Li...