i need someOne to solve for me all this Question as soon as possible he can
Write a c program TO take a charcter from keyboard and find ASCII value of that character .
Dialog box
Enter a character k
The ASCII value of k = 107
Write a program to swap two numbers without third variable.
ex a = 12 and b = 20 before swap
after swap a = 20 and b = 10 with out any other variable
Dialog Box
Enter value of a and b = 10 20
After Swap value of a and b = 20 10
- Write a program to find factorial of a number.
Dialog Box
Enter the Number = 6
The Factorial of 6 is = 120
- Write a program to find largest number using 1 Diamentional array.
Dialog Box
Enter 10 elements in array
1
2
3
4
5
6
7
8
9
10
The Second Highest Number is = 10
Write a program to print such design using c loop.
2 4 6 8 10 12
2 4 6 8 10
2 4 6 8
2 4 6
2 4
2
***** End ***********