INDEX
PART - A
- Write a C Program to reverse a number and find the sum of the individual digits. Also check if the number entered is a palindrome or not.
- Write a C Program to generate the Fibonacci Series of 'n' numbers.
- Write a C Program to find the greatest of 3 numbers using nested if statements.
- Write a C Program to find GCD and LCM of two numbers.
- Write a C Program to find the tax rate for the gross salary of an employee based on the given condition:
if
gross is < 2000 ; NO TAX
gross is >2000 and <= 4000 ; 3% TAX
gross is >4000 and <= 5000 ; 5% TAX
gross is > 8000 ; 8% TAX
Using SWITCH statements. - Write a C Program to generate 'n' Prime Numbers.
- Write a C Program to convert DECIMAL to BINARY.
- Write a C Program to find the sum of the sine series:
sin(x)=(x-(((x^3)/3!) + ((x^5)/5!) - ((x^7)/7!) .......... of upto 'n' terms.
The links will be updated as soon as the code is uploaded online.
No comments:
Post a Comment