CSE101 C Common Programs List
CSE101 C Common Programs List
Topic Index
S. No. Topic
I Basic Operations, Input / Output
II IF-Else and Switch
III Looping Constructs
IV Functions
V Recursion
VI Arrays
VII Strings
VIII Pointers
IX Dynamic Memory Allocation
X Structures
L i s t o f P r o gr a m s
S. No. Topic
1. Programs using Input, output and assignment statements
2. Programs using Branching statements
3. Programs using Looping statements
4. Programs using Functions
5. Programs using Recursion
6. Programs using Single and Multidimensional Arrays
7. Programs using strings
8. Programs using Pointers
9. Programs using dynamic memory allocation
10. Programs using Structures
1|Page
CSE101 : Problem Solving & Programming in C – Common Programs List
1. Programs using Input, output and assignment statements
1. C Program to swap two numbers without using temporary
variables.
2. C program to perform addition, subtraction, division, integer
division, multiplication and modulo division on two integer
numbers.
3. C program to prepare a grocery bill. Enter, the name of the
item purchased, quantity and its price per unit. Then display
the bill in the following format.
********************BILL****************************
Item Quantity Price Amount
*****************************************************
******************************************************
Total Amount to be paid
******************************************************
2|Page
CSE101 : Problem Solving & Programming in C – Common Programs List
4. Programs using Functions
3|Page
CSE101 : Problem Solving & Programming in C – Common Programs List
4|Page