Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

C progamming only and no sscanf and i have to use commond for all of them help i

ID: 674859 • Letter: C

Question

C progamming only and no sscanf and i have to use commond for all of them help i have exam tuesday

1. Create a program to test for a palindromes.

a. Must take command line arguments.

b. cannot use string.h

c. Sample output Is a Palindrome or Is Not a Palindrome

2. Create a that computes the power and any give number.

a. The prototype is as follows double(double, double);

b. Cannot use include math.h

c. Must use command line arguments. argv[1] = number, argv[2] = power

3. Create a program that prints a string. a. Cannot use printf with a "%s"

b. Must print every other character of the word in reverse order. c. example... EET3150 output is 01TE

d. Be sure to handle both even and odd lengths. e.. no string.h, scanf

f. the word to print will come from the command line arguments argv[1].

Explanation / Answer

2)

Output: Enter base number: 3

Enter power number(positive integer): 3

3^3 = 27

3)

Output: