0% found this document useful (0 votes)
8 views3 pages

Lab List

The document outlines a practical lab program list for the C programming course at Meerut Institute of Technology for BCA 1st semester, session 2022-23. It includes 44 programming assignments ranging from basic tasks like printing 'HELLO WORLD' and performing arithmetic operations to more complex problems such as calculating GCD, LCM, and reversing strings. The assignments are designed to enhance students' understanding of C programming concepts and their application.

Uploaded by

Shubham Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views3 pages

Lab List

The document outlines a practical lab program list for the C programming course at Meerut Institute of Technology for BCA 1st semester, session 2022-23. It includes 44 programming assignments ranging from basic tasks like printing 'HELLO WORLD' and performing arithmetic operations to more complex problems such as calculating GCD, LCM, and reversing strings. The assignments are designed to enhance students' understanding of C programming concepts and their application.

Uploaded by

Shubham Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Meerut Institute of Technology, Professional courses, Meerut(1110)

Department of Computer Application (BCA)

Subject: Practical work of C programming Sub code: BCA-107


Semester: BCA 1st sem Session: 2022-23

LAB PROGRAM LIST

1. WAP to print “HELLO WORLD” .


2. WAP to add two numbers.
3. WAP to perform arithmetic operations (+,-,*,/) on two integer values.
4. WAP to multiply of two float numbers.
5. WAP to swap the values of two variables using third variable.
6. WAP to swap the values of two variables without using third variable.
7. WAP to calculate simple interest.
8. WAP to calculate the area and circumference of a circle.
9. WAP to check whether a number is even or odd.
10. WAP to check whether it is leap year or not a leap year.
11. WAP to find maximum of two numbers.
12. WAP to check whether input number is positive or negative.
13. WAP to find maximum of three numbers using nested if else.
14. WAP to calculate the length of a string.
15. WAP to read a string and count total number of vowels are used in the string.
16. WAP to understand bitwise operators available in c.
17. Any character is entered through the keyboard, WAP to determine whether
the character is entered is capital letter, a small cases letter, a digit or special
character.
18. WAP to calculate sum given n numbers.
19. WAP to print table of a number.
20. WAP to calculate factorial of a given number.
21. WAP to print the sum of first n natural numbers.
22. WAP to print squares and cubes upto given range.
23. WAP to determine whether a number is palindrome or not.
24. WAP to determine a given number is prime or not. A prime number is divisible
only by 1 or itself.
25. WAP to print
11111
22222
33333
44444
26. WAP to print different number patterns:

27. WAP to print pattern like----


*----------
--*--------
----*------
-------*---
-----------*
28. WAP to print different star patterns like:

29. If a number is input through the keyboard. WAP to reverse the number.
30. WAP to print all factors of a number.
31. WAP to print all Armstrong nu8mbers between 1 to 300. If sum of cubes of
each digit of the number is equal to the number itself. Then the number is called
an Armstrong.
32. WAP to print Fibonacci sequence.
0 1 1 2 3 5 8 13 21 34 55 89………
33. WAP to input any digit from user and find the three largest numbers in a
digit.
34. WAP to calculate area of circle using call by value.
35. WAP to swapping two values using call by reference.
36. WAP to calculate value of sine series.
37. WAP to calculate decimal number to binary.
38. WAP to print a numbered triangle.
1
1 2 1
1 2 3 2 1
39. The distance between two cities in (KM) is input through the keyboard. WAP
to convert and print this distance in meter, feet, inches and cm.
40. Write a C Program without using main() function.
41. WAP to find greatest common Divisor (GCD) two numbers.
42. WAP to find LCM of two numbers.
43. WAP to reverse a string using recursive function.
44. WAP to determine whether a number is perfect number or not using function.

You might also like