create a doubly linked list in c , in which each node stores a string . on inserting a node , node previous to it , current node and next node should be printed . also write a function to delete a specified node . write a function to return node which is n steps forward and n steps backward to current node .
Pass your marks of CA-1, CA-2, and CA-3, of course, INT102 to the function with header high
(float, float, float). Write a function that should return the highest CA mark
When will the ‘while’ loop be preferred over the for loop? Mention the scenario and write the
programme to demonstrate this.
You have to write a menu-driven programme to create a bill for the item(s) selected by the user.
Keep asking the user for selecting available items with their price list until the user inputs ‘N’ for No.
Do this with the help of while loop and switch statement. Finally, you have to display the bill amount
of all those selected items.
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.
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.
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