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.