Take input of number 12008988 in the University using appropriate data type. Write a
programme to print all the prime number digits, each in a new line, in this number
Input numbers from the user and find the product of all those input numbers until the user
inputs a negative number. In other means, the loop should end when the user enters a
negative number. Finally, display the product of all those positive numbers entered by the
user.
Write a code in C language to Calculate average CGPA with grade and score
Take input of your registration number(8-digits) in the University. Write a program to print all the prime numbers digits in your registration number
Use recursion tree to solve the following recurrence.
T(n) = T(n/15) + T(n/10) + 2T(n/6) + √n
Write a c program to make a queue from user input and check whether prime number present or not in the queue and find frequency of the prime number.
Hints
Make a menu which will having following menu options
-insert queue data
-insert in which position
-delete queue data
-show queue
-show prime numbers in queue
-show frequency of prime number in queue
Write a code to find the frequency of prime numbers from a user input queue
Write a code to find the frequency of prime numbers from a queue
The first line will contain a message prompt to input the integer.
The second line contains "Positive" if the integer is positive, or "Negative" if it isn't.
Enter·n:·-12
NegativeGiven an array A of N integers and two integers X and Y, find the number of integers in the array that are both less than or equal to X and divisible by Y.