0% found this document useful (0 votes)
0 views

program list.rtf

The document lists various C programming tasks, including programs for arithmetic, relational, and assignment operators, as well as loops and conditional statements. It also includes tasks for mathematical computations such as finding factorials, GCD, and checking for prime numbers. Additionally, it covers string manipulations like reversing a number and checking for palindromes.

Uploaded by

abc581324
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
0 views

program list.rtf

The document lists various C programming tasks, including programs for arithmetic, relational, and assignment operators, as well as loops and conditional statements. It also includes tasks for mathematical computations such as finding factorials, GCD, and checking for prime numbers. Additionally, it covers string manipulations like reversing a number and checking for palindromes.

Uploaded by

abc581324
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

C++ program list

1. WAP on 'C' using all arithmetic operators.

2. WAP on C using all relational operators.

3. WAP on 'C' using assignment operators.

4. WAP on 'C' for increment and decrement operator.

5. WAP on 'C' for ternary operator.

6. WAP on 'C' that input a number and print either number is even or odd.

7. WAP on 'C' to find the largest number among three numbers.

8. WAP on 'C' for while loop.

9. WAP on 'C' for do-while loop.

10. WAP on 'C' for 'for loop'.

11. WAP on 'C' that input a number and print its factorial.

12. WAP on 'C' that input a number and print either the number is prime or not.

13. . WAP on 'C' that input a number either its Armstrong or not.

14. WAP on 'C' to print a fibonacci series.

15. WAP on 'C' that input two numbers and print their GCD.

16. WAP on 'C' that prints the following series.

​ a). *​ ​ ​ ​ ​ ​ b). * * * *

* *​ ​ ​ ​ ​ *​ * *

​ * * *​ ​ ​ ​ ​ * *​

* * * *​ ​ ​ ​ *

17. WAP on 'C' that input a number and print sum of digits.

18. WAP on 'C' that input two numbers and swap it without using third variable.

19. WAP on 'C' that input two numbers and swap it using third variable.
20. WAP to Reverse a Number.

21. WAP to check whether a number is Palindrome or Not.

22. WAP to check whether a number is Prime or Not.

23. WAP on 'C' that recusive function to calculate factorial.

24. WAP to check Leap Year.

You might also like