In a college the faculty member wants find a student with help of their register number, now he wants to compare the register no. one by one and to find the corresponding person. Use the suitable searching technique.
Create a C program that will generate a table of chosen mathematical operations. The user has to be prompted first for the math operation and then enter a value that will be used to add, subtract, multiply or divide from 1 to 10 to complete the table.
Sample Run:
M A T H O P E R A T I O N S:
[M] – Multiplication
[D] – Division
[A] – Addition
[S] - Subtraction
Enter your choice: M
Enter your desired value to be multiplied: 8
1*8=8
2*8=16
3*8=24
4*8=32
5*8=40
6*8=48
7*8=56
8*8=64
9*8=72
10*8=80
Continue [Y/N]? Y
M A T H O P E R A T I O N S:
[M] – Multiplication
[D] – Division
[A] – Addition
[S] - Subtraction
Enter your choice: A
Enter your desired value to be added:4
1+4=5
2+4=6
3+4=7
4+4=8
5+4=9
6+4=10
7+4=11
8+4=12
9+4=13
10+4=14
Continue [Y/N]? N
Thank you for choosing my program
Write a C Program to calculate the Average of an array elements where the elements are received as
input.
Write a C program to input number from user and check number is palindrome or not using while loop.
Write a C program to input a number from user and print multiplication table of the given number using for loop.
Write a C program to perform addition, subtraction, multiplication and division of two integer numbers, respectively 2 and 6 and show the result on the screen.
Write a C program to print your name, date of birth, mobile numbers and university’s name on separate line.
Submit a Report "the impact of improving debugging skill on programming ability"
What is an array of pointers? Is it possible to have negative index in an array? Why is it necessary to give the size of an array in an array declaration?
What is a data type? Differentiate between array and pointer. Write a program to interchange
2 variables without using the third one.