Saturday, September 19, 2026
A2610008 - COMPUTATIONAL THINKING AND PROBLEM SOLVING USING C LAB
Prerequisites: Basic understanding of computer fundamentals and problem-solving concepts
Course Objectives: The main objective of the course is to
- Apply the principles of C language and computational thinking techniques in problem solving.
- Design flowcharts and algorithms, and to develop the ability to trace and debug programs.
- Design and develop C programs using arrays, strings, pointers, recursion, and functions.
- Apply dynamic memory allocation, file operations, and preprocessor commands in program design.
COs
Course
Outcome (CO) Statement
Bloom’s
Level
CO1
Apply computational thinking to construct algorithms and
flowcharts for a given problem and translate them into working C programs.
K3
CO2
Develop C programs using operators, selection statements and
loops to implement a specified logic.
K3
CO3
Develop C programs that manipulate
arrays, strings, structures and pointers to solve computational problems.
K3
CO4
Construct modular programs using user-defined functions and
recursion and perform file input-output operations.
K3
CO5
Analyse a C program by tracing and debugging it and evaluate
alternative implementations for correctness and efficiency.
K4
Lab Requirements (tools / software to carry out the
experiments):
· C
compiler: GCC (GNU Compiler Collection) — via MinGW-w64 on Windows, or the
built-in gcc on Linux/macOS.
· IDE
/ editor: Code::Blocks, Dev-C++ or Visual Studio Code with the C/C++ extension.
· Command-line
terminal to compile and run programs (gcc, ./a.out) and observe the
compile–link–run stages.
· Debugger:
GDB (GNU Debugger), integrated in Code::Blocks / VS Code, for tracing and
step-by-step debugging.
· Operating
system: Windows 10/11 or a Linux distribution (e.g., Ubuntu); any 64-bit PC
with 4 GB RAM or more.
· No-install
alternative: OnlineGDB, Programiz or Replit for quick practice and testing in a
browser.
List of Experiments
Exercise 1: Getting Started with
1.
Write, compile and run a C program that prints “Hello, World!” on the screen.
Identify the source file, the object file and the executable produced, and
record the command used at each stage.
2.
Write a C program that declares variables of type int, float, char and double,
reads a value for each from the user, and displays each value together with the
size of its type using sizeof.
3.
Write a C program to read the height and width of a rectangle from the user and
compute its perimeter and are.
Exercise 2: Operators and Expressions
1.
Write a C program to compute the distance between two points whose coordinates
are entered by the user.
2.
Write a C program that reads four integers p, q, r, s and, using relational and
logical operators, prints 'Correct values' if q > r, s > p and (r + s)
> (p + q); otherwise 'Wrong values'.
3.
Write a C program to compute simple and compound interest for values entered by
the user.
Exercise 3: Selection and Decision
Making
1.
Write a C program to read a character and classify it as a vowel, consonant,
digit or special symbol.
2.
Write a C program to find the largest of three numbers using nested if-else.
3.
Write a menu-driven C program to compute the area of various geometrical shapes
(circle, rectangle, triangle, square) using switch-case.
Exercise 4: Loops and Series
1.
Write a C program to display the first n even natural numbers and their sum.
2.
Write a C program to reverse a given integer and check whether it is a
palindrome.
3.
Write a C program to display the sum of the harmonic series 1 + 1/2 + 1/3 + ...
up to n terms.
|
COs |
Course
Outcome (CO) Statement |
Bloom’s
Level |
|
CO1 |
Apply computational thinking to construct algorithms and
flowcharts for a given problem and translate them into working C programs. |
K3 |
|
CO2 |
Develop C programs using operators, selection statements and
loops to implement a specified logic. |
K3 |
|
CO3 |
Develop C programs that manipulate
arrays, strings, structures and pointers to solve computational problems. |
K3 |
|
CO4 |
Construct modular programs using user-defined functions and
recursion and perform file input-output operations. |
K3 |
|
CO5 |
Analyse a C program by tracing and debugging it and evaluate
alternative implementations for correctness and efficiency. |
K4 |
Lab Requirements (tools / software to carry out the experiments):
· C
compiler: GCC (GNU Compiler Collection) — via MinGW-w64 on Windows, or the
built-in gcc on Linux/macOS.
· IDE
/ editor: Code::Blocks, Dev-C++ or Visual Studio Code with the C/C++ extension.
· Command-line
terminal to compile and run programs (gcc, ./a.out) and observe the
compile–link–run stages.
· Debugger:
GDB (GNU Debugger), integrated in Code::Blocks / VS Code, for tracing and
step-by-step debugging.
· Operating
system: Windows 10/11 or a Linux distribution (e.g., Ubuntu); any 64-bit PC
with 4 GB RAM or more.
· No-install
alternative: OnlineGDB, Programiz or Replit for quick practice and testing in a
browser.
List of Experiments
Exercise 1: Getting Started with
1. Write, compile and run a C program that prints “Hello, World!” on the screen. Identify the source file, the object file and the executable produced, and record the command used at each stage.
2. Write a C program that declares variables of type int, float, char and double, reads a value for each from the user, and displays each value together with the size of its type using sizeof.
3. Write a C program to read the height and width of a rectangle from the user and compute its perimeter and are.
Exercise 2: Operators and Expressions
1. Write a C program to compute the distance between two points whose coordinates are entered by the user.
2. Write a C program that reads four integers p, q, r, s and, using relational and logical operators, prints 'Correct values' if q > r, s > p and (r + s) > (p + q); otherwise 'Wrong values'.
3. Write a C program to compute simple and compound interest for values entered by the user.
Exercise 3: Selection and Decision Making
1. Write a C program to read a character and classify it as a vowel, consonant, digit or special symbol.
2. Write a C program to find the largest of three numbers using nested if-else.
3. Write a menu-driven C program to compute the area of various geometrical shapes (circle, rectangle, triangle, square) using switch-case.
Exercise 4: Loops and Series
1.
Write a C program to display the first n even natural numbers and their sum.
2.
Write a C program to reverse a given integer and check whether it is a
palindrome.
3.
Write a C program to display the sum of the harmonic series 1 + 1/2 + 1/3 + ...
up to n terms.
Exercise 5: Nested Loops and Number Patterns
1. Write a C program to print the multiplication table pyramid for numbers 1 to n using nested loops.
2. Write a C program to check whether a given number is prime, then extend it to print all prime numbers and all Armstrong numbers below.
Exercise 6: One-Dimensional Arrays
1. Write a C program to print all unique elements of an array, and implement linear search to find a given element in the array.
2. Write a C program to separate the odd and even elements of an array into two different arrays, and implement binary search to find a given element in a sorted array.
3. Write
a C program to sort the elements of an array in ascending order using selection
sort, and compare the efficiency of linear search vs. binary search on the
sorted array by counting the number of comparisons each method takes.
Exercise 7: Matrices
1. Write a C program to perform addition of two square matrices and display the resultant matrices.
2. Write a C program to multiply two square matrices and display the resultant matrices.
3. Write
a C program to find the transpose of a given matrix.
Exercise 8: Strings:
Write C
programs to perform the following without using string handling functions
· Find
the length of a given string.
· Copy
one string into another.
· Concatenate
two strings.
· Compare
two strings and display whether they are equal, or which one is greater.
· Reverse
a given string (using a separate swap function to exchange characters).
· Search
for a character in a string and display its position (or
indicate if not found).
· Count
the number of vowels, consonants, and words in a given string
Exercise 9: Pointers Fundamentals
1. Write a C program to demonstrate the use of the & (address-of) and * (value-at-address) operators.
2. Write a C program to add two numbers using pointers.
3. Write a C program to swap two values using call by reference.
Exercise 10: Pointers and Dynamic
Memory
1. Write
a C program to dynamically allocate memory for an array using malloc, find the largest element and the sum of all elements in it, then repeat using calloc and
note the difference between the two.
2. Write
a C program to count the number of vowels in a string using a pointer.
Exercise 11: User-Defined Functions
1. Write a C program to check whether a number is prime using a user-defined function.
2. Write a C program to compute the GCD and LCM of two numbers using functions.
3. Write
a C program to demonstrate a function that returns a pointer.
Exercise 12: Recursion
1. Write a C program to compute the factorial and the n-th Fibonacci term using recursion.
2. Write a C program to compute the sum of digits of a number using recursion.
3. Write
a C program to convert a decimal number to its binary equivalent using a
recursive function.
Exercise 13: File Handling
1. Write a C program to append multiple lines at the end of an existing text file.
2. Write a C program to copy the contents of one file into another file.
3. Write
a C program to count the number of characters, words and lines in a text file.
Web References:
· NPTEL
– Programming in C, IIT Kanpur:
https://onlinecourses.nptel.ac.in/noc21_cs81/preview
· Virtual Labs – Problem Solving Lab, IIIT Hyderabad: https://ps-iiith.vlabs.ac.in/
· GeeksforGeeks – C Programming:
https://www.geeksforgeeks.org/c-programming-language/
A2610003 - COMPUTATIONAL THINKING AND PROBLEM SOLVING USING C
Prerequisites: Mathematics and logical reasoning at 10+2 level. No prior programming experience is assumed.
Course Objectives: The main objective of the course is to
- Familiarize students with computers, computational thinking, and the process of algorithmic problem solving.
- Build strong programming fundamentals using the C language, including operators, control structures, and loops.
- Develop the ability to design and implement solutions using arrays, strings, and user- defined data types.
- Impart working knowledge of pointers, recursion, dynamic memory allocation, functions, and file handling for building modular, reusable programs.
|
COs |
Course
Outcome (CO) Statement |
Bloom’s
Level |
|
CO1 |
Apply computational thinking techniques (decomposition,
abstraction, pattern recognition) to design algorithms and flowcharts for a
given problem. |
K3 |
|
CO2 |
Develop C programs using appropriate operators, expressions,
selection statements, and loops to implement a given logic. |
K3 |
|
CO3 |
Analyze problems involving arrays,
strings, structures and unions and construct suitable C solutions. |
K4 |
|
CO4 |
Apply pointers, recursion, and dynamic memory allocation to
solve computational problems efficiently. |
K3 |
|
CO5 |
Construct modular C programs using user-defined functions and
perform text/binary file input-output operations. |
K3 |
UNIT-I: Computational Thinking and Introduction to C
Computational Thinking: Decomposition, Pattern Recognition, Abstraction, Algorithm Design; representing solutions as algorithms, pseudocode, and flowcharts; Number Systems and Data Representation (integers, reals); Overview of Computer Organization and Program Execution.
Introduction to C: Background, Structure of a C Program, Identifiers, Keywords, Variables, Constants, Basic Data Types, Input/Output statements; Expressions, Operators, type of operators- arithmetic, relational, logical, bitwise, assignment, conditional, increment, decrement, etc., unary, binary, ternary, Operator Precedence and Associativity, Type Conversion; Scope, Storage Classes, and Type Qualifiers.
UNIT-II: Selection and Decision-Making: Simple if, Two-Way selection- if-else, nested-if, else-if ladder, and Multi-Way Selection- switch. Repetition: Counter- and Event-Controlled Loops: for, while, do-while, and nested loops; Break and continue, Programming Applications combining Selection and Repetition. Arrays: One-Dimensional and Two-Dimensional Arrays, Multidimensional Arrays, Array-based Problem Solving (searching, sorting, etc.).
UNIT-III:
Functions: Designing Structured/Modular Programs, Function Declaration and Definition, Parameter Passing (by value, by reference using pointers), Passing Arrays and Pointers to Functions, Standard Library Functions, Inter-Function Communication. Recursion: Recursive vs. Iterative Solutions, Designing Recursive Algorithms, Recursion with Arrays and Pointers, Efficiency Considerations.
Strings: String Representation, Standard String-Handling Functions, Arrays of Strings, String-to-Data Conversion.
UNIT-IV:
Pointers: Pointer Fundamentals, Pointer-to-Pointer, Pointer Arithmetic, Pointers and Arrays, Array of Pointers, types of pointers, Compatibility and L-value/R-value concepts. Dynamic Memory Allocation: malloc, calloc, realloc, free.
User-Defined Types: Typedef, Enumerated Types, Structures, Unions, and Nested Structures; Programming Applications using Structures and Arrays of Structures.
UNIT-V:
Pre-processor: Directives and Macros. Command Line Arguments.
File I/O: Streams, Text vs. Binary Files, Standard Library File Functions, formatted and Character I/O, Sequential File Processing.
TEXT BOOKS:
1. Behrouz A. Forouzan & Richard F. Gilberg, Computer Science: A Structured Programming Approach Using C, 3rd Edition, Cengage Learning, ISBN-13: 978-0-534-49132-1.
2. Brian W. Kernighan & Dennis M. Ritchie, The C Programming Language, 2nd Edition, Pearson Education / Prentice Hall India, 1988.
REFERENCE BOOKS:
1. Sumitabha Das, “Computer Fundamentals and Programming”, 18th Edition, McGraw Hill Education, 2018.
2. Ashok N. Kamthane, Amit Ashok Kamthane, “Programming in C”, 4th Edition, Pearson Education, 2025. ISBN: 978-9332543633.
3. Pradip Dey, Manas Ghosh, “Computer Fundamentals and Programming in C”, 2nd Edition, Oxford University Press, 2013. ISBN: 978-0198068842.
E-RESOURCES:
1. NPTEL – Programming in C, IIT Kanpur: https://onlinecourses.nptel.ac.in/noc21_cs81/preview
2. Geeks for Geeks – C Programming Language: https://www.geeksforgeeks.org/c-programminglanguage/
3. Programiz – Learn C Programming: https://www.programiz.com/c-programming
4. cplusplus.com – C Standard Library Reference: https://cplusplus.com/reference/clibrary/
5. TutorialsPoint – C Programming: https://www.tutorialspoint.com/cprogramming/index.html
6. W3Schools – C Tutorial: https://www.w3schools.com/c/
Wednesday, August 5, 2026
Technical Training
Basic Number Based Problems
1. Positive or Negative Numbers
2. Even or Odd Numbers
3. Sum of First N Natural numbers
4. Sum of N natural numbers
5. Sum of numbers in a given range
6. Greatest of two numbers
7. Greatest of the Three numbers
8. Leap year or not
9. Prime number
10. Prime number within a given range
11. Sum of digits of a number
12. Reverse of a number
13. Palindrome Number
14. Armstrong Number
15. Armstrong Number in a given range
16. Fibonacci Series upto nth term
17. Find the Nth Term of the Fibonacci Series
18. Factorial of a number
19. Power of a number
20. Factor of a number
21. Finding Prime Factors of a number
22. Strong number
23. Automorphic number
24. Harshad number
25. Abundant number
26. Friendly pair
Number-Based Problems
Monday, March 30, 2026
PYTHON PROGRAMMING UNIT-V : Introduction to Data Science: Functional Programming, JSON and XML in Python, NumPy with Python, Pandas.
Sample Experiments:
1. Python program to check whether a JSON string contains complex object or not.
2. Python Program to demonstrate NumPy arrays creation using array () function.
3. Python program to demonstrate use of ndim, shape, size, dtype.
4. Python program to demonstrate basic slicing, integer and Boolean indexing.
5. Python program to find min, max, sum, cumulative sum of array
6. Create a dictionary with at least five keys and each key represent value as a list where this list contains at least ten values and convert this dictionary as a pandas data frame and explore the data through the data frame as follows:
7. Apply head () function to the pandas data frame
8. Perform various data selection operations on Data Frame
9. Select any two columns from the above data frame, and observe the change in one attribute with respect to other attribute with scatter and plot operations in matplotlib
Programs Click link
Monday, March 16, 2026
PYTHON PROGRAMMING UNIT-IV:
Files: Types of Files, Creating and Reading Text Data, File Methods to Read and Write Data, Reading and Writing Binary Files, Pickle Module, Reading and Writing CSV Files, Python os and os.path Modules.
File Programs Click link
Object-Oriented Programming: Classes and Objects, Creating Classes in Python, Creating Objects in Python, Constructor Method, Classes with Multiple Objects, Class Attributes Vs Data Attributes, Encapsulation, Inheritance, Polymorphism.
Sunday, March 1, 2026
Tuesday, February 17, 2026
Saturday, December 27, 2025
PYTHON PROGRAMMING
UNIT1 NOTES
UNIT-1 Part-I Programs Click link
UNIT-1 Control Statement Programs Click Link
UNIT-1 Loop Statement Programs Click Link
Python Exception Handling CLICK LINK
Python Programming by Reema Thareja CLICK LINK
Monday, November 3, 2025
Thursday, September 11, 2025
Thursday, July 3, 2025
Thursday, January 23, 2025
ASE_COMPUTER PROGRAMMING LAB 2024-25
COMPUTER PROGRAMMING LAB(Common to All branches of Engineering)
Course Objectives:
The course aims to give students hands – on experience and train them on the concepts of the C- programming language.
Course Outcomes:
CO1: Read, understand, and trace the execution of programs written in C language.(Understand)
CO2: Apply the right control structure for solving the problem. (Apply)
CO3: Develop, Debug and Execute programs to demonstrate the applications of arrays, functions, pointers and files in C. (Apply)
CO4: Improve individual / teamwork skills, communication and report writing skills with ethical values.
UNIT I
WEEK 1 Click Link for Lab Notes
SAMPLE PROGRAMS
Objective: Getting familiar with the programming environment on the computer and writing the first program.
Suggested Experiments/Activities:
Tutorial 1: Problem-solving using Computers.
Lab1: Familiarization with programming environment
i) Basic Linux environment and its editors like Vi, Vim & Emacs etc.
ii) Exposure to Turbo C, gcc
iii) Writing simple programs using printf(), scanf()
WEEK 2 Click Link for Lab Notes
Objective: Getting familiar with how to formally describe a solution to a problem in a series of finite steps both using textual notation and graphic notation.
Suggested Experiments /Activities:
Tutorial 2: Problem-solving using Algorithms and Flow charts.
Lab 1: Converting algorithms/flow charts into C Source code.
Developing the algorithms/flowcharts for the following sample programs
i) Sum and average of 3 numbers
ii) Conversion of Fahrenheit to Celsius and vice versa
iii) Simple interest calculation
WEEK 3 Click Link for Lab Notes Link2
Objective: Learn how to define variables with the desired data-type, initialize them with appropriate values and how arithmetic operators can be used with variables and constants.
Suggested Experiments/Activities:
Tutorial 3: Variable types and type conversions:
Lab 3: Simple computational problems using arithmetic expressions.
i) Finding the square root of a given number
ii) Finding compound interest
iii) Area of a triangle using heron’s formulae
iv) Distance travelled by an object
UNIT II
WEEK 4 Click Link for Lab Notes LINK2
Objective: Explore the full scope of expressions, type-compatibility of variables &constants and operators used in the expression and how operator precedence works.
Suggested Experiments/Activities:
Tutorial4: Operators and the precedence and as associativity:
Lab4: Simple computational problems using the operator’ precedence and associativity
i) Evaluate the following expressions.
a. A+B*C+(D*E) + F*G
b. A/B*C-B+A*D/3
c. A+++B---A
d. J= (i++) + (++i)
ii) Find the maximum of three numbers using conditional operator
iii) Take marks of 5 subjects in integers, and find the total, average in float
WEEK 5 Click Link for Lab Notes
Objective: Explore the full scope of different variants of “if construct” namely if- else, null- else, if-else if*-else, switch and nested-if including in what scenario each one of them can be used and how to use them. Explore all relational and logical operators while writing conditionals for “if construct”.
Suggested Experiments/Activities:
Tutorial 5: Branching and logical expressions:
Lab 5: Problems involving if-then-else structures.
i) Write a C program to find the max and min of four numbers using if-else.
ii) Write a C program to generate electricity bill.
iii) Find the roots of the quadratic equation.
iv) Write a C program to simulate a calculator using switch case.
v) Write a C program to find the given year is a leap year or not.
WEEK 6 Click Link for Lab Notes
Objective: Explore the full scope of iterative constructs namely while loop, do-while loop and for loop in addition to structured jump constructs like break and continue including when each of these statements is more appropriate to use.
Suggested Experiments/Activities:
Tutorial 6: Loops, while and for loops
Lab 6: Iterative problems e.g., the sum of series
i) Find the factorial of given number using any loop.
ii) Find the given number is a prime or not.
iii) Compute sine and cos series
iv) Checking a number palindrome
v) Construct a pyramid of numbers.
UNIT III
WEEK 7: Click Link for Lab Notes
Objective: Explore the full scope of Arrays construct namely defining and initializing 1-D and 2-D and more generically n-D arrays and referencing individual array elements from the defined array. Using integer 1-D arrays, explore search solution linear search.
Suggested Experiments/Activities:
Tutorial 7: 1 D Arrays: searching.
Lab 7:1D Array manipulation, linear search
i) Find the min and max of a 1-D integer array.
ii) Perform linear search on1D array.
iii) The reverse of a 1D integer array
iv) Find 2’s complement of the given binary number.
v) Eliminate duplicate elements in an array.
WEEK 8:
Objective: Explore the difference between other arrays and character arrays that can be used as Strings by using null character and get comfortable with string by doing experiments that will reverse a string and concatenate two strings. Explore sorting solution bubble sort using integer arrays.
Suggested Experiments/Activities:
Tutorial 8: 2 D arrays, sorting and Strings.
Lab 8: Matrix problems, String operations, Bubble sort
i) Addition of two matrices
ii) Multiplication two matrices
iii) Sort array elements using bubble sort
iv) Concatenate two strings without built-in functions
v) Reverse a string using built-in and without built-in string functions
UNIT IV
WEEK 9:
Objective: Explore pointers to manage a dynamic array of integers, including memory allocation & value initialization, resizing changing and reordering the contents of an array and memory de-allocation using malloc (), calloc (), realloc () and free () functions. Gain experience processing command-line arguments received by C
Suggested Experiments/Activities:
Tutorial 9: Pointers, structures and dynamic memory allocation
Lab 9: Pointers and structures, memory dereference.
i) Write a C program to find the sum of a 1D array using malloc()
ii) Write a C program to find the total, average of n students using structures
iii) Enter n students data using calloc() and display failed students list
iv) Read student name and marks from the command line and display the student
details along with the total.
v) Write a C program to implement realloc()
WEEK 10:
Objective: Experiment with C Structures, Unions, bit fields and self-referential structures (Singly linked lists) and nested structures
Suggested Experiments/Activities:
Tutorial 10: Bitfields, Self-Referential Structures, Linked lists
Lab10 : Bitfields, linked lists
Read and print a date using dd/mm/yyyy format using bit-fields and differentiate the same without using bit- fields
i) Create and display a singly linked list using self-referential structure.
ii) Demonstrate the differences between structures and unions using a C program.
iii) Write a C program to shift/rotate using bitfields.
iv) Write a C program to copy one structure variable to another structure of the same type.
UNIT V
WEEK 11: CLICK LINK FOR LAB NOTES
Objective: Explore the Functions, sub-routines, scope and extent of variables, doing some experiments by parameter passing using call by value. Basic methods of numerical integration.
Suggested Experiments/Activities:
Tutorial 11: Functions, call by value, scope and extent,
Lab 11: Simple functions using call by value, solving differential equations
using Eulers theorem.
i) Write a C function to calculate NCR value.
ii) Write a C function to find the length of a string.
iii) Write a C function to transpose of a matrix.
iv) Write a C function to demonstrate numerical integration of differential equations
using Euler’s method
WEEK 12: Click Link for Lab Notes
Objective: Explore how recursive solutions can be programmed by writing recursive functions that can be invoked from the main by programming at-least five distinct problems that have naturally recursive solutions.
Suggested Experiments/Activities:
Tutorial 12: Recursion, the structure of recursive calls
Lab 12: Recursive functions
i) Write a recursive function to generate Fibonacci series.
ii) Write a recursive function to find the lcm of two numbers.
iii) Write a recursive function to find the factorial of a number.
iv) Write a C Program to implement Ackermann function using recursion.
v) Write a recursive function to find the sum of series.
WEEK 13: Click Link for Lab Notes
Objective: Explore the basic difference between normal and pointer variables, Arithmetic operations using pointers and passing variables to functions using pointers
Suggested Experiments/Activities:
Tutorial 13: Call by reference, dangling pointers
Lab 13: Simple functions using Call by reference, Dangling pointers.
i) Write a C program to swap two numbers using call by reference.
ii) Demonstrate Dangling pointer problem using a C program.
iii) Write a C program to copy one string into another using pointer.
iv) Write a C program to find no of lowercase, uppercase, digits
and other characters using pointers.
WEEK14: Click Link for Lab Notes
Objective: To understand data files and file handling with various file I/O functions. Explore the differences between text and binary files.
Suggested Experiments/Activities:
Tutorial 14: File handling
Lab 14: File operations
i) Write a C program to write and read text into a file.
ii) Write a C program to write and read text into a binary file using fread() and fwrite()
iii) Copy the contents of one file to another file.
iv) Write a C program to merge two files into the third file using command-line arguments.
v) Find no. of lines, words and characters in a file
vi) Write a C program to print last n characters of a given file.
Textbooks:
1. Ajay Mittal, Programming in C: A practical approach, Pearson.
2. Byron Gottfried, Schaum' s Outline of Programming with C, McGraw Hill
Reference Books:
1. Brian W. Kernighan and Dennis M. Ritchie, The C Programming Language,
Prentice- Hall of India
2. C Programming, A Problem-Solving Approach, Forouzan, Gilberg, Prasad, CENGAGE
COMPUTATIONAL THINKING AND PROBLEM SOLVING USING C LAB WEEK1 Exercise 1
-
PYTHON PROGRAMMING UNIT3 Dictionary Data Structure link1 link2 PYTHON TUPLE and SET link1 Tuple Notes link Set Notes link
-
PYTHON PROGRAMMING UNIT2 Programs on Functions Programs on Strings Programs on List LIST Complete Notes
-
COMPUTER PROGRAMMING LAB (Common to All branches of Engineering) Course Objectives: The course aims to give students hands – on experience ...