Write a program that accepts a letter grade as input and outputs the teacher's remarks. Use only switch, do not use any if's. Example: If 'A' or 'a', then "Excellent job!". If 'F' or 'f', then "You failed. Please study more next time."
Apply the mathematical formula to find fibonacci of the given number using recursive functions? Sample 1 Input : 5, Output : 3. Sample 2 Input : 12, Output : 144
Apply the mathematical formula to find Fibonacci of the given number
using recursive functions.
The challenge response protocol generates unique substring key to a user.
The authenticated users can share their files in social networks and the
unique key are partially generated key uses all combination of random
substrings from a user’s given answer to a secrete question. Design a C
program to find all substring of a string using dynamic memory allocation
Translate the linear search algorithm into a subprogram LINEAR(ARRAY, LB, UB, ITEM. LOC) which either finds the location LOC where ITEM appears in ARRAY or returns LOC = 0.
Ms. Seena has brought 10 items and she wants to print the item with minimum and maximum cost. Write a software program to do it.
Write a C Program to do the following using pointer to pointer (Dynamic Memory Allocation)
a. To Add two matrices A and B of size m×n. (Read m and n as inputs)
b.To multiply two matrices A and B.
c To find the transpose of a Marrix.
Write a C Program to do the following using pointer to pointer (Dynamic Memory Allocation)
a. To Add two matrices A and B of size m×n. (Read m and n as inputs)
b.To multiply two matrices A and B.
c To find the transpose of a Marrix.
Fetch substring from the given string and display the sub-string starting and ending position. Also, print the substring and its length
Runtime Input :
programming
program
Output :
0 6
Length is 7
Input numbers from the user and find the sum of all those input numbers until the user inputs zero. In other means, the loop should end when the user enters 0. Finally, display the sum of all those numbers entered by the user